summaryrefslogtreecommitdiff
path: root/gdb/observer.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2004-04-16 17:26:40 +0000
committerJoel Brobecker <brobecker@gnat.com>2004-04-16 17:26:40 +0000
commit0077f53ba6de7df0760e41d7b65cb8923ab8d1ed (patch)
tree488f2f65dfdb015a2635044bebc07e3785968807 /gdb/observer.c
parent432956f364a73812b05aa00802e6e8fb771edb5f (diff)
downloadgdb-0077f53ba6de7df0760e41d7b65cb8923ab8d1ed.tar.gz
* observer.c (observer_test_first_notification_function): Update
function profile. (observer_test_second_notification_function): Likewise. (observer_test_third_notification_function): Likewise.
Diffstat (limited to 'gdb/observer.c')
-rw-r--r--gdb/observer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/observer.c b/gdb/observer.c
index 20bc8aa2004..53916ced5da 100644
--- a/gdb/observer.c
+++ b/gdb/observer.c
@@ -172,19 +172,19 @@ int observer_test_second_observer = 0;
int observer_test_third_observer = 0;
void
-observer_test_first_notification_function (void)
+observer_test_first_notification_function (struct bpstats *bs)
{
observer_test_first_observer++;
}
void
-observer_test_second_notification_function (void)
+observer_test_second_notification_function (struct bpstats *bs)
{
observer_test_second_observer++;
}
void
-observer_test_third_notification_function (void)
+observer_test_third_notification_function (struct bpstats *bs)
{
observer_test_third_observer++;
}