summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2003-02-28 07:19:32 +0000
committerJoel Brobecker <brobecker@gnat.com>2003-02-28 07:19:32 +0000
commitd10ebf5d213cfae1aa2713cf87f7951e90d95857 (patch)
tree26a87b902f39e77708a8efc7b04f535d826ec5b2
parent03f381cce0c7be1ba0c58e6f2702b1da441f7d5a (diff)
downloadgdb-d10ebf5d213cfae1aa2713cf87f7951e90d95857.tar.gz
* observer.c: Minor comments edits.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/observer.c18
2 files changed, 12 insertions, 10 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b9b504761e3..d1c6db18dbd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
2003-02-27 J. Brobecker <brobecker@gnat.com>
+ * observer.c: Minor comments edits.
+
+2003-02-27 J. Brobecker <brobecker@gnat.com>
+
* observer.h, observer.c: New file.
2003-02-27 Andrew Cagney <cagney@redhat.com>
diff --git a/gdb/observer.c b/gdb/observer.c
index c331112951e..92ec48e614f 100644
--- a/gdb/observer.c
+++ b/gdb/observer.c
@@ -95,9 +95,9 @@ xfree_observer_list_node (struct observer_list *node)
xfree (node);
}
-/* Attach the callback NOTIFY to a subject represented by its list
- of observers LIST. The DATA is also stored, in order for the subject
- to provide it back to the observer during a notification. */
+/* Attach the callback NOTIFY to a SUBJECT. The DATA is also stored,
+ in order for the subject to provide it back to the observer during
+ a notification. */
static struct observer *
generic_observer_attach (struct observer_list **subject,
@@ -114,10 +114,9 @@ generic_observer_attach (struct observer_list **subject,
return observer_list->observer;
}
-/* Remove the given OBSERVER from the list of observers that need
- to be notified by the subject represented by its LIST of observers.
- Once detached, OBSERVER should no longer be used, as it is no longer
- valid. */
+/* Remove the given OBSERVER from the SUBJECT. Once detached, OBSERVER
+ should no longer be used, as it is no longer valid. */
+
static void
generic_observer_detach (struct observer_list **subject,
const struct observer *observer)
@@ -145,9 +144,8 @@ generic_observer_detach (struct observer_list **subject,
warning ("Failed to detach observer");
}
-/* Send a notification to all the observers of a subject represented by
- its LIST of observers. ARGS is passed to all observers as an argument
- to the notification callback. */
+/* Send a notification to all the observers of SUBJECT. ARGS is passed to
+ all observers as an argument to the notification callback. */
static void
generic_observer_notify (struct observer_list *subject, const void *args)