diff options
author | Tom Tromey <tromey@adacore.com> | 2022-08-08 10:41:43 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-09-20 12:25:19 -0600 |
commit | 9e468e953cd2f605a3f51d6ef6532e46b8fdd7b4 (patch) | |
tree | 2368c5b3ea5ed2f5aa78b92c384186f3290763b2 /gdb/solib.h | |
parent | 5898c79ae692ed02dd9267888541b352423a9331 (diff) | |
download | gdb-9e468e953cd2f605a3f51d6ef6532e46b8fdd7b4.zip gdb-9e468e953cd2f605a3f51d6ef6532e46b8fdd7b4.tar.gz gdb-9e468e953cd2f605a3f51d6ef6532e46b8fdd7b4.tar.bz2 |
Move solib_ops into gdbarch
This changs solib_ops to be an ordinary gdbarch value and updates all
the uses. This removes a longstanding FIXME and makes the code
somewhat cleaner as well.
Diffstat (limited to 'gdb/solib.h')
-rw-r--r-- | gdb/solib.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/solib.h b/gdb/solib.h index 2510284..a7e751e 100644 --- a/gdb/solib.h +++ b/gdb/solib.h @@ -71,11 +71,6 @@ extern bool in_solib_dynsym_resolve_code (CORE_ADDR); extern void no_shared_libraries (const char *ignored, int from_tty); -/* Set the solib operations for GDBARCH to NEW_OPS. */ - -extern void set_solib_ops (struct gdbarch *gdbarch, - const struct target_so_ops *new_ops); - /* Synchronize GDB's shared object list with inferior's. Extract the list of currently loaded shared objects from the |