diff options
Diffstat (limited to 'os/rt')
-rw-r--r-- | os/rt/ports/e200/chcore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/rt/ports/e200/chcore.h b/os/rt/ports/e200/chcore.h index 0c3ae9801..7f97beeff 100644 --- a/os/rt/ports/e200/chcore.h +++ b/os/rt/ports/e200/chcore.h @@ -356,7 +356,7 @@ struct context { #define port_switch(ntp, otp) { \
register struct port_intctx *sp asm ("%r1"); \
if ((stkalign_t *)(sp - 1) < otp->p_stklimit) \
- chDbgPanic("stack overflow"); \
+ chSysHalt("stack overflow"); \
_port_switch(ntp, otp); \
}
#endif
|