aboutsummaryrefslogtreecommitdiffstats
path: root/litmus
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2010-11-11 02:31:38 -0500
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2011-01-05 08:13:18 -0500
commit69d8772cb575fe71cfb6a7fbc07ca21acfbb4665 (patch)
treeecca820ac3435948695d1dcc06870d0281ac5b07 /litmus
parenta698e30c15dc3ce113f7f7c0c821a38f4f8cbab0 (diff)
DBG: add additional tracingwip-extra-debug
This is not meant to be merged into master...
Diffstat (limited to 'litmus')
-rw-r--r--litmus/preempt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/litmus/preempt.c b/litmus/preempt.c
index ebe2e3461895..ea13fd3bd3be 100644
--- a/litmus/preempt.c
+++ b/litmus/preempt.c
@@ -30,8 +30,8 @@ void sched_state_will_schedule(struct task_struct* tsk)
30 /* Litmus tasks should never be subject to a remote 30 /* Litmus tasks should never be subject to a remote
31 * set_tsk_need_resched(). */ 31 * set_tsk_need_resched(). */
32 BUG_ON(is_realtime(tsk)); 32 BUG_ON(is_realtime(tsk));
33 TRACE_TASK(tsk, "set_tsk_need_resched() ret:%p\n", 33 TRACE_TASK(tsk, "set_tsk_need_resched() ret:%p task_cpu:%d\n",
34 __builtin_return_address(0)); 34 __builtin_return_address(0), task_cpu(tsk));
35} 35}
36 36
37/* Called by the IPI handler after another CPU called smp_send_resched(). */ 37/* Called by the IPI handler after another CPU called smp_send_resched(). */