diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-05 10:47:57 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-04-05 10:47:57 +0000 |
commit | ce4f94eff6a85bd8c93794d0413316e347614f2c (patch) | |
tree | 26b478e9b9703465642e5e5a0f8300a72c888831 /os/rt/include/chsys.h | |
parent | fbb8e866760c1bc605422c92eef756903e5d63df (diff) | |
download | ChibiOS-ce4f94eff6a85bd8c93794d0413316e347614f2c.tar.gz ChibiOS-ce4f94eff6a85bd8c93794d0413316e347614f2c.tar.bz2 ChibiOS-ce4f94eff6a85bd8c93794d0413316e347614f2c.zip |
Renamed internal tracer functions.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9242 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include/chsys.h')
-rw-r--r-- | os/rt/include/chsys.h | 6 |
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); \
|