rtos: Fix error in reading the current thread in ChibiOS/RT

Commit c4ab127b40 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>
This commit is contained in:
Matthias Blaicher 2012-11-10 12:10:15 +01:00 committed by Spencer Oliver
parent 5c2c269336
commit aa8e480ec4
1 changed files with 1 additions and 1 deletions

View File

@ -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");