diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-12-04 16:43:51 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-12-04 16:43:52 -0500 |
commit | 42a4fec513f11d4ff346f62fc0df3731ce9f7d59 (patch) | |
tree | 9f7c10404b81c3a7186f3b1552e7114af4922c1d /gdb/solib.c | |
parent | aafdfb4eddc3c58be24fe50a1e6543a4b9c8cbac (diff) | |
download | gdb-42a4fec513f11d4ff346f62fc0df3731ce9f7d59.zip gdb-42a4fec513f11d4ff346f62fc0df3731ce9f7d59.tar.gz gdb-42a4fec513f11d4ff346f62fc0df3731ce9f7d59.tar.bz2 |
gdb: add inferior_execd observable
I want to add another action (clearing displaced stepping state) that
happens when an inferior execs. I think it would be cleaner to have an
observer for this event, rather than have infrun know about each other
sub-component.
Replace the calls to solib_create_inferior_hook and
jit_inferior_created_hook in follow_exec by observers.
gdb/ChangeLog:
* observable.h (inferior_execd): Declare new observable.
* observable.c (inferior_execd): Declare new observable.
* infrun.c (follow_exec): Notify inferior_execd observer.
* jit.c (jit_inferior_created_hook): Make static.
(_initialize_jit): Register inferior_execd observer.
* jit.h (jit_inferior_created_hook): Remove declaration.
* solib.c (_initialize_solib): Register inferior_execd observer.
Change-Id: I000cce00094e23baa67df693d912646b6ae38e44
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index b11c6f3..1f6e915 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -1557,6 +1557,10 @@ _initialize_solib () solib_data = gdbarch_data_register_pre_init (solib_init); gdb::observers::free_objfile.attach (remove_user_added_objfile); + gdb::observers::inferior_execd.attach ([] (inferior *inf) + { + solib_create_inferior_hook (0); + }); add_com ("sharedlibrary", class_files, sharedlibrary_command, _("Load shared object library symbols for files matching REGEXP.")); |