diff options
Diffstat (limited to 'gdb/break-catch-load.c')
-rw-r--r-- | gdb/break-catch-load.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gdb/break-catch-load.c b/gdb/break-catch-load.c index 5e290fd..594884e 100644 --- a/gdb/break-catch-load.c +++ b/gdb/break-catch-load.c @@ -24,7 +24,7 @@ #include "cli/cli-decode.h" #include "mi/mi-common.h" #include "progspace.h" -#include "solist.h" +#include "solib.h" #include "target.h" #include "valprint.h" @@ -119,7 +119,7 @@ solib_catchpoint::check_status (struct bpstat *bs) for (solib *iter : current_program_space->added_solibs) { if (!regex - || compiled->exec (iter->so_name.c_str (), 0, nullptr, 0) == 0) + || compiled->exec (iter->name.c_str (), 0, nullptr, 0) == 0) return; } } @@ -264,9 +264,7 @@ catch_unload_command_1 (const char *arg, int from_tty, catch_load_or_unload (arg, from_tty, 0, command); } -void _initialize_break_catch_load (); -void -_initialize_break_catch_load () +INIT_GDB_FILE (break_catch_load) { add_catch_command ("load", _("Catch loads of shared libraries.\n\ Usage: catch load [REGEX]\n\ |