remove target argument from gdb packet handling functions

This commit is contained in:
Jie Zhang
2011-08-24 11:23:04 -04:00
committed by Øyvind Harboe
parent 32862ed9f8
commit 8d7ddde5f1
6 changed files with 66 additions and 68 deletions

View File

@@ -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)