aboutsummaryrefslogtreecommitdiffstats
path: root/src/chschd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chschd.c')
-rw-r--r--src/chschd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/chschd.c b/src/chschd.c
index a07db5737..e3f4d9e0d 100644
--- a/src/chschd.c
+++ b/src/chschd.c
@@ -88,7 +88,7 @@ void chSchGoSleepS(tstate_t newstate) {
#if CH_USE_ROUNDROBIN
rlist.r_preempt = CH_TIME_QUANTUM;
#endif
-#if CH_USE_TRACE
+#if CH_DBG_ENABLE_TRACE
chDbgTrace(otp, currp);
#endif
chSysSwitchI(otp, currp);
@@ -171,7 +171,7 @@ void chSchWakeupS(Thread *ntp, msg_t msg) {
#if CH_USE_ROUNDROBIN
rlist.r_preempt = CH_TIME_QUANTUM;
#endif
-#if CH_USE_TRACE
+#if CH_DBG_ENABLE_TRACE
/* trace the context switch */
chDbgTrace(otp, ntp);
#endif
@@ -194,7 +194,7 @@ void chSchDoRescheduleI(void) {
#if CH_USE_ROUNDROBIN
rlist.r_preempt = CH_TIME_QUANTUM;
#endif
-#if CH_USE_TRACE
+#if CH_DBG_ENABLE_TRACE
chDbgTrace(otp, currp);
#endif
chSysSwitchI(otp, currp);