diff options
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 5 |
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) { |