* observer.c (observer_test_first_notification_function): Update
authorJoel Brobecker <brobecker@gnat.com>
Fri, 16 Apr 2004 17:26:40 +0000 (17:26 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Fri, 16 Apr 2004 17:26:40 +0000 (17:26 +0000)
        function profile.
        (observer_test_second_notification_function): Likewise.
        (observer_test_third_notification_function): Likewise.

gdb/ChangeLog
gdb/observer.c

index e3d55bc..53f7510 100644 (file)
@@ -1,3 +1,10 @@
+2004-04-16  Joel Brobecker  <brobecker@gnat.com>
+
+       * observer.c (observer_test_first_notification_function): Update
+       function profile.
+       (observer_test_second_notification_function): Likewise.
+       (observer_test_third_notification_function): Likewise.
+
 2004-04-16  Mark Kettenis  <kettenis@gnu.org>
 
        From Brian Ford <ford@vss.fsi.com>:
index 20bc8aa..53916ce 100644 (file)
@@ -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++;
 }