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
commite0270fd9c1ec26ff51a70c53e46a3d523cdd65d2 (patch)
tree2dbfe8588ce5aa99aa589294e9df68f1b9543f7b /gdb/observer.c
parent3d04925443366a4a1204b82b5355e1b8af5c0732 (diff)
* 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 20bc8aa200..53916ced5d 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++;
}