summaryrefslogtreecommitdiff
path: root/core/cortex-m/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/cortex-m/task.c')
-rw-r--r--core/cortex-m/task.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/cortex-m/task.c b/core/cortex-m/task.c
index f7fda67374..69b92d5de8 100644
--- a/core/cortex-m/task.c
+++ b/core/cortex-m/task.c
@@ -226,7 +226,9 @@ void svc_handler(int desched, task_id_t resched)
if (*current->stack != STACK_UNUSED_VALUE) {
panic_printf("\n\nStack overflow in %s task!\n",
task_names[current - tasks]);
+#ifdef CONFIG_SOFTWARE_PANIC
software_panic(PANIC_SW_STACK_OVERFLOW, current - tasks);
+#endif
}
#endif