aboutsummaryrefslogtreecommitdiff
path: root/gdb/target-connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/target-connection.h')
-rw-r--r--gdb/target-connection.h8
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 */