From 03eb35736c5a3ea65f571fc0c4c1811ccbd49780 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Mon, 22 Feb 2016 13:12:50 +0000 Subject: Renamed r13 context field in sp (ARM ports). Extended the priorities range from 127 to 255. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8921 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/various/shell/shell_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os/various/shell/shell_cmd.c') diff --git a/os/various/shell/shell_cmd.c b/os/various/shell/shell_cmd.c index 6432f59d3..80d683583 100644 --- a/os/various/shell/shell_cmd.c +++ b/os/various/shell/shell_cmd.c @@ -148,7 +148,7 @@ static void cmd_threads(BaseSequentialStream *chp, int argc, char *argv[]) { tp = chRegFirstThread(); do { chprintf(chp, "%08lx %08lx %08lx %4lu %9s %12s\r\n", - (uint32_t)tp->stklimit, (uint32_t)tp->ctx.r13, (uint32_t)tp, + (uint32_t)tp->stklimit, (uint32_t)tp->ctx.sp, (uint32_t)tp, (uint32_t)tp->prio, states[tp->state], tp->name == NULL ? "" : tp->name); tp = chRegNextThread(tp); -- cgit v1.2.3