aboutsummaryrefslogtreecommitdiff
path: root/src/server/gdb_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/gdb_server.h')
-rw-r--r--src/server/gdb_server.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/gdb_server.h b/src/server/gdb_server.h
index e393fb72..2792a203 100644
--- a/src/server/gdb_server.h
+++ b/src/server/gdb_server.h
@@ -40,6 +40,12 @@ int gdb_register_commands(struct command_context *command_context);
int gdb_put_packet(struct connection *connection, char *buffer, int len);
+static inline struct target *get_target_from_connection(struct connection *connection)
+{
+ struct gdb_service *gdb_service = connection->service->priv;
+ return gdb_service->target;
+}
+
#define ERROR_GDB_BUFFER_TOO_SMALL (-800)
#define ERROR_GDB_TIMEOUT (-801)