diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-08-21 13:55:07 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-08-21 13:55:07 +0000 |
commit | ba16b88ca9f0c244abd879d2918779a6c16829e9 (patch) | |
tree | a879af6ebc42cb6e094d80b9f54e9997b80c7930 | |
parent | 33383202eeb61c381ce75cd930d770ef5518008a (diff) | |
download | ChibiOS-ba16b88ca9f0c244abd879d2918779a6c16829e9.tar.gz ChibiOS-ba16b88ca9f0c244abd879d2918779a6c16829e9.tar.bz2 ChibiOS-ba16b88ca9f0c244abd879d2918779a6c16829e9.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7182 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/rt/ports/ARM/chcore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/ports/ARM/chcore.h b/os/rt/ports/ARM/chcore.h index 5cb5f18a8..bcf27d719 100644 --- a/os/rt/ports/ARM/chcore.h +++ b/os/rt/ports/ARM/chcore.h @@ -309,7 +309,7 @@ struct context { #define port_switch(ntp, otp) { \
register struct intctx *r13 asm ("r13"); \
if ((stkalign_t *)(r13 - 1) < otp->p_stklimit) \
- chDbgPanic("stack overflow"); \
+ chSysHalt("stack overflow"); \
_port_switch_thumb(ntp, otp); \
}
#else /* !CH_DBG_ENABLE_STACK_CHECK */
@@ -322,7 +322,7 @@ struct context { #define port_switch(ntp, otp) { \
register struct intctx *r13 asm ("r13"); \
if ((stkalign_t *)(r13 - 1) < otp->p_stklimit) \
- chDbgPanic("stack overflow"); \
+ chSysHalt("stack overflow"); \
_port_switch_arm(ntp, otp); \
}
#else /* !CH_DBG_ENABLE_STACK_CHECK */
|