aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2005-01-12 20:48:08 +0000
committerMark Kettenis <kettenis@gnu.org>2005-01-12 20:48:08 +0000
commitfbd1b305fd9d99a2f66d5394063c8d0ed379179f (patch)
tree9c6995d00c08dfba664b7d70c384dff710b8e9dc /gdb
parent8b1ca062713c30f40c1fb4ab889f048a97c38f3b (diff)
downloadgdb-fbd1b305fd9d99a2f66d5394063c8d0ed379179f.zip
gdb-fbd1b305fd9d99a2f66d5394063c8d0ed379179f.tar.gz
gdb-fbd1b305fd9d99a2f66d5394063c8d0ed379179f.tar.bz2
* observer.texi (GDB Observers): Document "solib_loaded".
Diffstat (limited to 'gdb')
-rw-r--r--gdb/doc/ChangeLog4
-rw-r--r--gdb/doc/observer.texi9
2 files changed, 11 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 7f0c4eb..c2096d4 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,3 +1,7 @@
+2005-01-08 Mark Kettenis <kettenis@gnu.org>
+
+ * observer.texi (GDB Observers): Document "solib_loaded".
+
2005-01-07 Andrew Cagney <cagney@gnu.org>
* configure.ac: Rename configure.in, require autoconf 2.59.
diff --git a/gdb/doc/observer.texi b/gdb/doc/observer.texi
index caa3565..8cba160 100644
--- a/gdb/doc/observer.texi
+++ b/gdb/doc/observer.texi
@@ -91,7 +91,12 @@ at the entry-point instruction. For @samp{attach} and @samp{core},
inferior, and before any information on the inferior has been printed.
@end deftypefun
-@deftypefun void solib_unloaded (struct so_list *@var{solib})
-The specified shared library has been discovered to be unloaded.
+@deftypefun void solib_loaded (struct so_list *@var{solib})
+The shared library specified by @var{solib} has been loaded. Note that
+when @value{GDBN} calls this observer, the library's symbols probably
+haven't been loaded yet.
@end deftypefun
+@deftypefun void solib_unloaded (struct so_list *@var{solib})
+The shared library specified by @var{solib} has been unloaded.
+@end deftypefun