diff options
author | Pedro Alves <palves@redhat.com> | 2009-05-19 00:23:49 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-05-19 00:23:49 +0000 |
commit | 2567c7d9ccb27053278c7bca0c911a817ab21b47 (patch) | |
tree | 225747d5d6ad2a1c4983155875dcc6437bb527e9 /gdb/breakpoint.c | |
parent | 7b6175f9c6195432011dc348479a3b05859bad2b (diff) | |
download | gdb-2567c7d9ccb27053278c7bca0c911a817ab21b47.zip gdb-2567c7d9ccb27053278c7bca0c911a817ab21b47.tar.gz gdb-2567c7d9ccb27053278c7bca0c911a817ab21b47.tar.bz2 |
* breakpoint.c (insert_breakpoints, breakpoint_init_inferior)
(update_global_location_list): Use gdbarch_has_global_breakpoints
instead of gdbarch_has_global_solist and
target_supports_multi_process.
* dicos-tdep.c (dicos_init_abi): Set
gdbarch_has_global_breakpoints.
* gdbarch.sh (has_global_solist): Update comment.
(has_global_breakpoints): New.
* remote.c (remote_start_remote): Use
gdbarch_has_global_breakpoints instead of
gdbarch_has_global_solist.
* target.c (target_detach): Use gdbarch_has_global_breakpoints
instead of gdbarch_has_global_solist.
* infcmd.c (attach_command): Use gdbarch_has_global_solist instead
of target_supports_multi_process.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 3461824..e36429d 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -1290,8 +1290,7 @@ insert_breakpoints (void) if (!breakpoints_always_inserted_mode () && (target_has_execution - || (gdbarch_has_global_solist (target_gdbarch) - && target_supports_multi_process ()))) + || gdbarch_has_global_breakpoints (target_gdbarch))) /* update_global_location_list does not insert breakpoints when always_inserted_mode is not enabled. Explicitly insert them now. */ @@ -1780,7 +1779,7 @@ breakpoint_init_inferior (enum inf_context context) /* If breakpoint locations are shared across processes, then there's nothing to do. */ - if (gdbarch_has_global_solist (target_gdbarch)) + if (gdbarch_has_global_breakpoints (target_gdbarch)) return; ALL_BP_LOCATIONS (bpt) @@ -7200,8 +7199,7 @@ update_global_location_list (int should_insert) if (breakpoints_always_inserted_mode () && should_insert && (target_has_execution - || (gdbarch_has_global_solist (target_gdbarch) - && target_supports_multi_process ()))) + || (gdbarch_has_global_breakpoints (target_gdbarch)))) insert_breakpoint_locations (); do_cleanups (cleanups); |