From aa8e480ec44e697064f8580f24cefe5b75eb03e0 Mon Sep 17 00:00:00 2001 From: Matthias Blaicher Date: Sat, 10 Nov 2012 12:10:15 +0100 Subject: [PATCH] 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 --- src/rtos/ChibiOS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.30.2