From: Matthias Blaicher Date: Sat, 10 Nov 2012 11:10:15 +0000 (+0100) Subject: rtos: Fix error in reading the current thread in ChibiOS/RT X-Git-Tag: v0.7.0-rc1~163 X-Git-Url: https://repo.or.cz/w/openocd.git/commitdiff_plain/aa8e480ec44e697064f8580f24cefe5b75eb03e0 rtos: Fix error in reading the current thread in ChibiOS/RT Commit c4ab127b4069e20e introduces a copy&paste error which affects the detection of the current thread. As a result, the stack of the current thread won't be detected correctly in most cases. Change-Id: Ib46b8f64be8053d7e9103f427c66796963214419 Signed-off-by: Matthias Blaicher Reviewed-on: http://openocd.zylin.com/974 Tested-by: jenkins Reviewed-by: Spencer Oliver --- diff --git a/src/rtos/ChibiOS.c b/src/rtos/ChibiOS.c index 7d1f5cf85..86e643d7f 100644 --- a/src/rtos/ChibiOS.c +++ b/src/rtos/ChibiOS.c @@ -463,7 +463,7 @@ static int ChibiOS_update_threads(struct rtos *rtos) uint32_t current_thrd; /* NOTE: By design, cf_off_name equals readylist_current_offset */ retval = target_read_u32(rtos->target, - current + signature->cf_off_name, + rlist + signature->cf_off_name, ¤t_thrd); if (retval != ERROR_OK) { LOG_ERROR("Could not read current Thread from ChibiOS target");