aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/litmus.c
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2015-08-09 07:18:49 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2015-08-09 06:21:19 -0400
commitf6f66a8fc952bbb49e9a6899fd119c46aa8b15bc (patch)
treea227f85b31c8f1a62dbfab31a7784ca400bc46ac /litmus/litmus.c
parentc8e818a62bc06b4df53c1662fbb21b650ab2f659 (diff)
Move trace point definition to litmus/litmus.c
If !CONFIG_SCHED_TASK_TRACE, but CONFIG_SCHED_LITMUS_TRACEPOINT, then we still need to define the tracepoint structures. This patch should be integrated with the earlier sched_task_trace.c patches during one of the next major rebasing efforts.
Diffstat (limited to 'litmus/litmus.c')
-rw-r--r--litmus/litmus.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/litmus/litmus.c b/litmus/litmus.c
index 703360c68609..db5ce0e9c76e 100644
--- a/litmus/litmus.c
+++ b/litmus/litmus.c
@@ -26,6 +26,11 @@
26#include <litmus/affinity.h> 26#include <litmus/affinity.h>
27#endif 27#endif
28 28
29#ifdef CONFIG_SCHED_LITMUS_TRACEPOINT
30#define CREATE_TRACE_POINTS
31#include <trace/events/litmus.h>
32#endif
33
29/* Number of RT tasks that exist in the system */ 34/* Number of RT tasks that exist in the system */
30atomic_t rt_task_count = ATOMIC_INIT(0); 35atomic_t rt_task_count = ATOMIC_INIT(0);
31 36