* observer.c (observer_test_first_notification_function): Update

function profile.
        (observer_test_second_notification_function): Likewise.
        (observer_test_third_notification_function): Likewise.
This commit is contained in:
Joel Brobecker 2004-04-16 17:26:40 +00:00
parent 3d04925443
commit e0270fd9c1
2 changed files with 10 additions and 3 deletions

View 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>:

View 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++;
}