diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2011-09-28 20:49:53 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2011-09-28 20:49:53 -0400 |
commit | a9ff1e57ac0ead518444c6960a2e799d8defc5bd (patch) | |
tree | 7f7fdc5d34b702d41639ea9e28a08ebc1b0dfd2e | |
parent | 23a00b911b968c6290251913ecc34171836b4d32 (diff) |
Added display of number of timers merged
-rw-r--r-- | litmus/event_group.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/litmus/event_group.c b/litmus/event_group.c index 276ba5dd242d..889c8e8731b6 100644 --- a/litmus/event_group.c +++ b/litmus/event_group.c | |||
@@ -3,6 +3,7 @@ | |||
3 | 3 | ||
4 | #include <litmus/litmus.h> | 4 | #include <litmus/litmus.h> |
5 | #include <litmus/trace.h> | 5 | #include <litmus/trace.h> |
6 | #include <litmus/sched_trace.h> | ||
6 | #include <litmus/event_group.h> | 7 | #include <litmus/event_group.h> |
7 | 8 | ||
8 | #if 1 | 9 | #if 1 |
@@ -54,6 +55,7 @@ static enum hrtimer_restart on_timer(struct hrtimer *timer) | |||
54 | e->function(e); | 55 | e->function(e); |
55 | } | 56 | } |
56 | VTRACE("Exhausted %d events from list 0x%p\n", num, el); | 57 | VTRACE("Exhausted %d events from list 0x%p\n", num, el); |
58 | sched_trace_action(NULL, num); | ||
57 | return HRTIMER_NORESTART; | 59 | return HRTIMER_NORESTART; |
58 | } | 60 | } |
59 | 61 | ||