diff options
author | Michel JAOUEN <michel.jaouen@stericsson.com> | 2012-01-03 16:12:50 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvindharboe@gmail.com> | 2012-01-15 22:11:48 +0000 |
commit | ebac7c963a76ba20b4e66b0525d12127295cdccb (patch) | |
tree | 4fe778793f145ff8e54469c8470e2dbd45c4b35e /src/server | |
parent | ff3028ce1baec2522059108331846d3fd320b846 (diff) | |
download | riscv-openocd-ebac7c963a76ba20b4e66b0525d12127295cdccb.zip riscv-openocd-ebac7c963a76ba20b4e66b0525d12127295cdccb.tar.gz riscv-openocd-ebac7c963a76ba20b4e66b0525d12127295cdccb.tar.bz2 |
rtos : smp support
Change-Id: I583cddf5e62ed77f108786a085569ab8699ad50d
Signed-off-by: Michel JAOUEN <michel.jaouen@stericsson.com>
Reviewed-on: http://openocd.zylin.com/344
Tested-by: jenkins
Reviewed-by: Evan Hunter <evan@ozhiker.com>
Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src/server')
-rw-r--r-- | src/server/gdb_server.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/server/gdb_server.c b/src/server/gdb_server.c index 7091555..8d84a99 100644 --- a/src/server/gdb_server.c +++ b/src/server/gdb_server.c @@ -836,6 +836,11 @@ static int gdb_new_connection(struct connection *connection) breakpoint_clear_target(gdb_service->target); watchpoint_clear_target(gdb_service->target); + /* clean previous rtos session if supported*/ + if ((gdb_service->target->rtos) && + (gdb_service->target->rtos->type->clean)) + gdb_service->target->rtos->type->clean(gdb_service->target); + /* remove the initial ACK from the incoming buffer */ if ((retval = gdb_get_char(connection, &initial_ack)) != ERROR_OK) return retval; @@ -869,9 +874,9 @@ static int gdb_new_connection(struct connection *connection) gdb_actual_connections++; LOG_DEBUG("New GDB Connection: %d, Target %s, state: %s", - gdb_actual_connections, - target_name(gdb_service->target), - target_state_name(gdb_service->target)); + gdb_actual_connections, + target_name(gdb_service->target), + target_state_name(gdb_service->target)); /* DANGER! If we fail subsequently, we must remove this handler, * otherwise we occasionally see crashes as the timer can invoke the @@ -2256,6 +2261,7 @@ static int gdb_input_inner(struct connection *connection) case 'c': case 's': { + gdb_thread_packet(connection, packet, packet_size); log_add_callback(gdb_log_callback, connection); if (gdb_con->mem_write_error) |