diff options
author | Philipp Rudo <prudo@linux.vnet.ibm.com> | 2016-10-21 12:32:52 +0200 |
---|---|---|
committer | Andreas Arnez <arnez@linux.vnet.ibm.com> | 2016-10-21 12:32:52 +0200 |
commit | 4db41a0a1097860d1e0d3b8ecf6c01dbbb65ba5a (patch) | |
tree | 9bec685ca55fba650da6e99a2c6e59f7b3f90f3a /gdb/solist.h | |
parent | 16017f1915d15d0ec8a6fae02b137a6b50d96e63 (diff) | |
download | gdb-4db41a0a1097860d1e0d3b8ecf6c01dbbb65ba5a.zip gdb-4db41a0a1097860d1e0d3b8ecf6c01dbbb65ba5a.tar.gz gdb-4db41a0a1097860d1e0d3b8ecf6c01dbbb65ba5a.tar.bz2 |
Delete target_so_ops->special_symbol_handling hook
No one(!) actually implements this hook. So simply delete it.
gdb/ChangeLog:
* solist.h (struct target_so_ops): Delete special_symbol_handling
hook.
* solib.c (solib_add, reload_shared_libraries): Adjust.
* solib-aix.c (solib_aix_special_symbol_handling): Delete
(_initialize_solib_aix): Adjust
* solib-darwin.c (darwin_special_symbol_handling): Delete
(_initialize_darwin_solib): Adjust
* solib-dsbt.c (dsbt_special_symbol_handling): Delete
(_initialize_dsbt_solib): Adjust
* solib-frv.c (frv_special_symbol_handling): Delete
(_initialize_frv_solib): Adjust
* solib-svr4.c (svr4_special_symbol_handling): Delete
(_initialize_svr4_solib): Adjust
* solib-target.c (solib_target_special_symbol_handling): Delete
(_initialize_solib_target): Adjust
Diffstat (limited to 'gdb/solist.h')
-rw-r--r-- | gdb/solist.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/solist.h b/gdb/solist.h index 1bdfbaf..f709483 100644 --- a/gdb/solist.h +++ b/gdb/solist.h @@ -100,12 +100,6 @@ struct target_so_ops /* Target dependent code to run after child process fork. */ void (*solib_create_inferior_hook) (int from_tty); - /* Do additional symbol handling, lookup, etc. after symbols for a - shared object have been loaded in the usual way. This is - called to do any system specific symbol handling that might be - needed. */ - void (*special_symbol_handling) (void); - /* Construct a list of the currently loaded shared objects. This list does not include an entry for the main executable file. |