diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 16:47:14 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-02 16:47:14 +0000 |
commit | 71f174d00dcd678fa9da5acea8e1454f2417810c (patch) | |
tree | 53f5b106f790e0797545ac7b91af2e0a21886720 /os/various/shell | |
parent | e8f67437d0007a2a4cd5a05afbd525a1960c188c (diff) | |
download | ChibiOS-71f174d00dcd678fa9da5acea8e1454f2417810c.tar.gz ChibiOS-71f174d00dcd678fa9da5acea8e1454f2417810c.tar.bz2 ChibiOS-71f174d00dcd678fa9da5acea8e1454f2417810c.zip |
Fixed stack limit conditions in RT4.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9224 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/various/shell')
-rw-r--r-- | os/various/shell/shell_cmd.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/os/various/shell/shell_cmd.c b/os/various/shell/shell_cmd.c index 359207da0..7f31dc87f 100644 --- a/os/various/shell/shell_cmd.c +++ b/os/various/shell/shell_cmd.c @@ -161,8 +161,13 @@ static void cmd_threads(BaseSequentialStream *chp, int argc, char *argv[]) { chprintf(chp, "stklimit stack addr refs prio state name\r\n");
tp = chRegFirstThread();
do {
+#if CH_DBG_ENABLE_STACK_CHECK == TRUE
+ uint32_t stklimit = (uint32_t)tp->stklimit;
+#else
+ uint32_t stklimit = 0U;
+#endif
chprintf(chp, "%08lx %08lx %08lx %4lu %4lu %9s %12s\r\n",
- (uint32_t)tp->stklimit, (uint32_t)tp->ctx.sp, (uint32_t)tp,
+ stklimit, (uint32_t)tp->ctx.sp, (uint32_t)tp,
(uint32_t)tp->refs - 1, (uint32_t)tp->prio, states[tp->state],
tp->name == NULL ? "" : tp->name);
tp = chRegNextThread(tp);
|