diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-22 13:12:50 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-22 13:12:50 +0000 |
commit | 03eb35736c5a3ea65f571fc0c4c1811ccbd49780 (patch) | |
tree | e1bb8b1adf7c6ba465aa3b17719278f5ee2aa01a /os/various/shell | |
parent | c40bc2c09dd3fe9c3033a075ce01aab11a5cf559 (diff) | |
download | ChibiOS-03eb35736c5a3ea65f571fc0c4c1811ccbd49780.tar.gz ChibiOS-03eb35736c5a3ea65f571fc0c4c1811ccbd49780.tar.bz2 ChibiOS-03eb35736c5a3ea65f571fc0c4c1811ccbd49780.zip |
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
Diffstat (limited to 'os/various/shell')
-rw-r--r-- | os/various/shell/shell_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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);
|