diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-01 18:00:29 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-01 18:00:29 +0000 |
commit | 84acb35a5a97c28b24b1d61541dc1ee01a7d8a43 (patch) | |
tree | 050360ea3daaaec3647333216ad72302a7d934c2 /gdb/observer.sh | |
parent | f3bb67042f67aa346efa2cb025a8705ed838d24d (diff) | |
download | binutils-gdb-84acb35a5a97c28b24b1d61541dc1ee01a7d8a43.tar.gz |
2004-09-01 Jeff Johnston <jjohnstn@redhat.com>
* observer.sh: Add struct so_list declaration.
* Makefile.in: Add dependencies on observer.h for solib.c and
breakpoint.c.
* breakpoint.c (disable_breakpoints_in_unloaded_shlib): New
function.
(_initialize_breakpoint): Register
disable_breakpoints_in_unloaded_shlib as an observer of the
"solib unloaded" observation event.
(re_enable_breakpoints_in_shlibs): For bp_shlib_disabled breakpoints,
call decode_line_1 so unfound breakpoint errors are silent.
* solib.c (update_solib_list): When a solib is discovered to have
been unloaded by the program, notify all observers of the
"solib unloaded" observation event.
Diffstat (limited to 'gdb/observer.sh')
-rwxr-xr-x | gdb/observer.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/observer.sh b/gdb/observer.sh index 2cc0e7fe90a..b23f15e044a 100755 --- a/gdb/observer.sh +++ b/gdb/observer.sh @@ -52,6 +52,7 @@ case $lang in struct observer; struct bpstats; +struct so_list; EOF ;; esac |