* observer.texi (GDB Observers): Document "solib_loaded".
This commit is contained in:
parent
8b1ca06271
commit
fbd1b305fd
2 changed files with 11 additions and 2 deletions
|
@ -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>
|
2005-01-07 Andrew Cagney <cagney@gnu.org>
|
||||||
|
|
||||||
* configure.ac: Rename configure.in, require autoconf 2.59.
|
* configure.ac: Rename configure.in, require autoconf 2.59.
|
||||||
|
|
|
@ -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.
|
inferior, and before any information on the inferior has been printed.
|
||||||
@end deftypefun
|
@end deftypefun
|
||||||
|
|
||||||
@deftypefun void solib_unloaded (struct so_list *@var{solib})
|
@deftypefun void solib_loaded (struct so_list *@var{solib})
|
||||||
The specified shared library has been discovered to be unloaded.
|
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
|
@end deftypefun
|
||||||
|
|
||||||
|
@deftypefun void solib_unloaded (struct so_list *@var{solib})
|
||||||
|
The shared library specified by @var{solib} has been unloaded.
|
||||||
|
@end deftypefun
|
||||||
|
|
Loading…
Reference in a new issue