diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-28 15:45:23 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 11:29:05 -0400 |
commit | a7205820bae197a89fc746f9f3c07e389d7068ba (patch) | |
tree | e93a2514e7c9e9d42cc13206b73e118906b6a4d5 | |
parent | de2d5dfa2dce8ec40555b3bb6dfe21627e472c52 (diff) |
Bugfix: re-insert missing TS_PLUGIN_TICK_END tracing point
Insert PLUGIN_TICK_END tracing point in litmus_tick(). It was lost during
the porting of 2008.3 to 2010.1.
-rw-r--r-- | litmus/sched_litmus.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/litmus/sched_litmus.c b/litmus/sched_litmus.c index 0cdf284eb9c2..81ea464a81bc 100644 --- a/litmus/sched_litmus.c +++ b/litmus/sched_litmus.c | |||
@@ -34,6 +34,8 @@ static void litmus_tick(struct rq *rq, struct task_struct *p) | |||
34 | /* plugin tick */ | 34 | /* plugin tick */ |
35 | litmus->tick(p); | 35 | litmus->tick(p); |
36 | 36 | ||
37 | TS_PLUGIN_TICK_END; | ||
38 | |||
37 | return; | 39 | return; |
38 | } | 40 | } |
39 | 41 | ||