aboutsummaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2009-05-19 00:23:49 +0000
committerPedro Alves <palves@redhat.com>2009-05-19 00:23:49 +0000
commit2567c7d9ccb27053278c7bca0c911a817ab21b47 (patch)
tree225747d5d6ad2a1c4983155875dcc6437bb527e9 /gdb/infcmd.c
parent7b6175f9c6195432011dc348479a3b05859bad2b (diff)
downloadgdb-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/infcmd.c')
-rw-r--r--gdb/infcmd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index ec83e34..fcb0f91 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -2220,8 +2220,9 @@ attach_command (char *args, int from_tty)
dont_repeat (); /* Not for the faint of heart */
- if (target_supports_multi_process ())
- /* Don't complain if we can be attached to multiple processes. */
+ if (gdbarch_has_global_solist (target_gdbarch))
+ /* Don't complain if all processes share the same symbol
+ space. */
;
else if (target_has_execution)
{