aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/rtos.c
diff options
context:
space:
mode:
authorMichel JAOUEN <michel.jaouen@stericsson.com>2012-01-03 16:07:55 +0100
committerØyvind Harboe <oyvindharboe@gmail.com>2012-01-15 22:09:27 +0000
commitff3028ce1baec2522059108331846d3fd320b846 (patch)
tree0f90cb06d9f3215b721e84942e399d4baa2b6792 /src/rtos/rtos.c
parent1db60b9c434fc281bd25730e7398e92023cfe65d (diff)
downloadriscv-openocd-ff3028ce1baec2522059108331846d3fd320b846.zip
riscv-openocd-ff3028ce1baec2522059108331846d3fd320b846.tar.gz
riscv-openocd-ff3028ce1baec2522059108331846d3fd320b846.tar.bz2
rtos : current_threadid move to rtos context
Change-Id: I49d9d6d64c418be601d8723cb3eea9c3716ecb6b Signed-off-by: Michel JAOUEN <michel.jaouen@stericsson.com> Reviewed-on: http://openocd.zylin.com/343 Tested-by: jenkins Reviewed-by: Evan Hunter <evan@ozhiker.com> Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src/rtos/rtos.c')
-rw-r--r--src/rtos/rtos.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c
index f7d9486..78a7e9d 100644
--- a/src/rtos/rtos.c
+++ b/src/rtos/rtos.c
@@ -29,7 +29,6 @@
#include "server/gdb_server.h"
-static int64_t current_threadid = -1;
static void hex_to_str( char* dst, char * hex_src );
static int str_to_hex( char* hex_dst, char* src );
@@ -55,7 +54,6 @@ int rtos_create(Jim_GetOptInfo *goi, struct target * target)
{
int x;
char *cp;
-
if (! goi->isconfigure) {
if (goi->argc != 0) {
if (goi->argc != 0) {
@@ -115,6 +113,7 @@ int rtos_create(Jim_GetOptInfo *goi, struct target * target)
/* Create it */
target->rtos = calloc(1,sizeof(struct rtos));
target->rtos->type = rtos_types[x];
+ target->rtos->current_threadid = -1;
target->rtos->current_thread = 0;
target->rtos->symbols = NULL;
target->rtos->target = target;
@@ -426,7 +425,7 @@ int rtos_thread_packet(struct connection *connection, char *packet, int packet_s
else if ( packet[0] == 'H') // Set current thread ( 'c' for step and continue, 'g' for all other operations )
{
if ((packet[1] == 'g') && (target->rtos != NULL))
- sscanf(packet, "Hg%16" SCNx64, &current_threadid);
+ sscanf(packet, "Hg%16" SCNx64, &target->rtos->current_threadid);
gdb_put_packet(connection, "OK", 2);
return ERROR_OK;
}
@@ -437,7 +436,7 @@ int rtos_thread_packet(struct connection *connection, char *packet, int packet_s
int rtos_get_gdb_reg_list(struct connection *connection)
{
struct target *target = get_target_from_connection(connection);
-
+ int64_t current_threadid = target->rtos->current_threadid;
if ( ( target->rtos != NULL ) &&
( current_threadid != -1 ) &&
( current_threadid != 0 ) &&