aboutsummaryrefslogtreecommitdiff
path: root/src/rtos
diff options
context:
space:
mode:
authorMatthias Blaicher <matthias@blaicher.com>2012-11-10 12:10:15 +0100
committerSpencer Oliver <spen@spen-soft.co.uk>2012-11-12 09:47:40 +0000
commitaa8e480ec44e697064f8580f24cefe5b75eb03e0 (patch)
tree1709fe9ee42bb581999ec98d93d9bc762373c418 /src/rtos
parent5c2c269336cc49aa3ea7714d0ffcc4b2edf3057e (diff)
downloadriscv-openocd-aa8e480ec44e697064f8580f24cefe5b75eb03e0.zip
riscv-openocd-aa8e480ec44e697064f8580f24cefe5b75eb03e0.tar.gz
riscv-openocd-aa8e480ec44e697064f8580f24cefe5b75eb03e0.tar.bz2
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 <matthias@blaicher.com> Reviewed-on: http://openocd.zylin.com/974 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Diffstat (limited to 'src/rtos')
-rw-r--r--src/rtos/ChibiOS.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtos/ChibiOS.c b/src/rtos/ChibiOS.c
index 7d1f5cf..86e643d 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,
&current_thrd);
if (retval != ERROR_OK) {
LOG_ERROR("Could not read current Thread from ChibiOS target");