diff options
author | Tom Tromey <tromey@adacore.com> | 2022-08-08 11:00:50 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-09-20 12:25:19 -0600 |
commit | 549dfc51b07c0c749ebde15a3fa855ab496ea18a (patch) | |
tree | 19524424c91615492c20104d1e6b880e4afa5fc4 /gdb/solib-aix.c | |
parent | 9e468e953cd2f605a3f51d6ef6532e46b8fdd7b4 (diff) | |
download | gdb-549dfc51b07c0c749ebde15a3fa855ab496ea18a.zip gdb-549dfc51b07c0c749ebde15a3fa855ab496ea18a.tar.gz gdb-549dfc51b07c0c749ebde15a3fa855ab496ea18a.tar.bz2 |
Constify some target_so_ops instances
This changes some target_so_ops instances to be const. This makes
their use a little more obvious (they can't be mutated) and also
allows for the removal of some initialization code.
Diffstat (limited to 'gdb/solib-aix.c')
-rw-r--r-- | gdb/solib-aix.c | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/gdb/solib-aix.c b/gdb/solib-aix.c index 948bd0f..f483f54 100644 --- a/gdb/solib-aix.c +++ b/gdb/solib-aix.c @@ -718,25 +718,23 @@ show_solib_aix_debug (struct ui_file *file, int from_tty, } /* The target_so_ops for AIX targets. */ -struct target_so_ops solib_aix_so_ops; +const struct target_so_ops solib_aix_so_ops = +{ + solib_aix_relocate_section_addresses, + solib_aix_free_so, + nullptr, + solib_aix_clear_solib, + solib_aix_solib_create_inferior_hook, + solib_aix_current_sos, + solib_aix_open_symbol_file_object, + solib_aix_in_dynsym_resolve_code, + solib_aix_bfd_open, +}; void _initialize_solib_aix (); void _initialize_solib_aix () { - solib_aix_so_ops.relocate_section_addresses - = solib_aix_relocate_section_addresses; - solib_aix_so_ops.free_so = solib_aix_free_so; - solib_aix_so_ops.clear_solib = solib_aix_clear_solib; - solib_aix_so_ops.solib_create_inferior_hook - = solib_aix_solib_create_inferior_hook; - solib_aix_so_ops.current_sos = solib_aix_current_sos; - solib_aix_so_ops.open_symbol_file_object - = solib_aix_open_symbol_file_object; - solib_aix_so_ops.in_dynsym_resolve_code - = solib_aix_in_dynsym_resolve_code; - solib_aix_so_ops.bfd_open = solib_aix_bfd_open; - gdb::observers::normal_stop.attach (solib_aix_normal_stop_observer, "solib-aix"); |