aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chsys.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/rt/include/chsys.h')
-rw-r--r--os/rt/include/chsys.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/rt/include/chsys.h b/os/rt/include/chsys.h
index 3f51244d5..aa1bb0312 100644
--- a/os/rt/include/chsys.h
+++ b/os/rt/include/chsys.h
@@ -130,7 +130,7 @@
PORT_IRQ_PROLOGUE(); \
CH_CFG_IRQ_PROLOGUE_HOOK(); \
_stats_increase_irq(); \
- _dbg_trace_isr_enter(__func__); \
+ _trace_isr_enter(__func__); \
_dbg_check_enter_isr()
/**
@@ -143,7 +143,7 @@
*/
#define CH_IRQ_EPILOGUE() \
_dbg_check_leave_isr(); \
- _dbg_trace_isr_leave(__func__); \
+ _trace_isr_leave(__func__); \
CH_CFG_IRQ_EPILOGUE_HOOK(); \
PORT_IRQ_EPILOGUE()
@@ -285,7 +285,7 @@
*/
#define chSysSwitch(ntp, otp) { \
\
- _dbg_trace_switch(otp); \
+ _trace_switch(ntp, otp); \
_stats_ctxswc(ntp, otp); \
CH_CFG_CONTEXT_SWITCH_HOOK(ntp, otp); \
port_switch(ntp, otp); \