diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-28 15:45:23 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-06-09 16:55:46 -0400 |
commit | 93ad471f8a5e2ba8d27a29af3589f156f45cc2f1 (patch) | |
tree | 984c541b67a680dbd32a15eff015a3fd837a83f6 | |
parent | 7d604c15335532b89e96ad20d77feefb48d439e7 (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 7f7ddc3952a6..7cc601f3ccfa 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 | ||