diff options
author | Pedro Alves <palves@redhat.com> | 2020-01-10 20:06:14 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2020-01-10 20:06:14 +0000 |
commit | 2f4fcf00399bc0ad5a4fed6b530128e8be4f40da (patch) | |
tree | 2808b2e8b1b5992b8ece704ca03bb0b874653c24 /gdb/target-connection.h | |
parent | 121b3efd49f98e4049281b3ba7a258e650e40b38 (diff) | |
download | binutils-2f4fcf00399bc0ad5a4fed6b530128e8be4f40da.zip binutils-2f4fcf00399bc0ad5a4fed6b530128e8be4f40da.tar.gz binutils-2f4fcf00399bc0ad5a4fed6b530128e8be4f40da.tar.bz2 |
Require always-non-stop for multi-target resumptions
Currently, we can only support resuming multiple targets at the same
time if all targets are in non-stop mode (or user-visible all-stop
mode with target backend in non-stop mode).
This patch makes GDB error out if the user tries to resume more than
one target at the same time and one of the resumed targets isn't in
non-stop mode:
(gdb) info inferiors
Num Description Connection Executable
1 process 15303 1 (native) a.out
* 2 process 15286 2 (extended-remote :9999) a.out
(gdb) set schedule-multiple on
(gdb) c
Continuing.
Connection 2 (extended-remote :9999) does not support multi-target resumption.
This is here later in the series instead of in the main multi-target
patch because it depends the previous patch, which added
process_stratum_target::connection_string().
gdb/ChangeLog:
2020-01-10 Pedro Alves <palves@redhat.com>
* infrun.c: Include "target-connection.h".
(check_multi_target_resumption): New.
(proceed): Call it.
* target-connection.c (make_target_connection_string): Make
extern.
* target-connection.h (make_target_connection_string): Declare.
Diffstat (limited to 'gdb/target-connection.h')
-rw-r--r-- | gdb/target-connection.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/target-connection.h b/gdb/target-connection.h index dad3357..f97e476 100644 --- a/gdb/target-connection.h +++ b/gdb/target-connection.h @@ -20,6 +20,8 @@ #ifndef TARGET_CONNECTION_H #define TARGET_CONNECTION_H +#include <string> + struct process_stratum_target; /* Add a process target to the connection list, if not already @@ -29,4 +31,10 @@ void connection_list_add (process_stratum_target *t); /* Remove a process target from the connection list. */ void connection_list_remove (process_stratum_target *t); +/* Make a target connection string for T. This is usually T's + shortname, but it includes the result of + process_stratum_target::connection_string() too if T supports + it. */ +std::string make_target_connection_string (process_stratum_target *t); + #endif /* TARGET_CONNECTION_H */ |