From: Alan Bowman Date: Sun, 15 May 2011 20:20:21 +0000 (+0100) Subject: Corrected test for invalid current_threadid X-Git-Tag: v0.5.0-rc1~63 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6d9f61fb6540612fc818d31bba2acce550449a7a;hp=129f099ef19dd2082d3903600303fe5f4a2c4486;p=openocd Corrected test for invalid current_threadid --- diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c index d69127e5..3cdd9125 100644 --- a/src/rtos/rtos.c +++ b/src/rtos/rtos.c @@ -493,7 +493,7 @@ int gdb_thread_packet(struct connection *connection, struct target *target, char int rtos_get_gdb_reg_list(struct connection *connection, struct target *target, struct reg **reg_list[], int *reg_list_size) { if ( ( target->rtos != NULL ) && - ( current_threadid != 1 ) && + ( current_threadid != -1 ) && ( current_threadid != 0 ) && ( current_threadid != target->rtos->current_thread ) ) {