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/solib-frv.c | |
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/solib-frv.c')
-rw-r--r-- | gdb/solib-frv.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gdb/solib-frv.c b/gdb/solib-frv.c index 56ccb88..61a4ed0 100644 --- a/gdb/solib-frv.c +++ b/gdb/solib-frv.c @@ -762,14 +762,6 @@ enable_break (void) return 1; } -/* Implement the "special_symbol_handling" target_so_ops method. */ - -static void -frv_special_symbol_handling (void) -{ - /* Nothing needed for FRV. */ -} - static void frv_relocate_main_executable (void) { @@ -1175,7 +1167,6 @@ _initialize_frv_solib (void) frv_so_ops.free_so = frv_free_so; frv_so_ops.clear_solib = frv_clear_solib; frv_so_ops.solib_create_inferior_hook = frv_solib_create_inferior_hook; - frv_so_ops.special_symbol_handling = frv_special_symbol_handling; frv_so_ops.current_sos = frv_current_sos; frv_so_ops.open_symbol_file_object = open_symbol_file_object; frv_so_ops.in_dynsym_resolve_code = frv_in_dynsym_resolve_code; |