aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus
diff options
context:
space:
mode:
Diffstat (limited to 'include/litmus')
-rw-r--r--include/litmus/sched_trace.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/litmus/sched_trace.h b/include/litmus/sched_trace.h
index f7b2189374b2..7ca34cb13881 100644
--- a/include/litmus/sched_trace.h
+++ b/include/litmus/sched_trace.h
@@ -23,7 +23,8 @@ struct st_param_data { /* regular params */
23 u32 period; 23 u32 period;
24 u32 phase; 24 u32 phase;
25 u8 partition; 25 u8 partition;
26 u8 __unused[3]; 26 u8 class;
27 u8 __unused[2];
27}; 28};
28 29
29struct st_release_data { /* A job is was/is going to be released. */ 30struct st_release_data { /* A job is was/is going to be released. */
@@ -40,6 +41,7 @@ struct st_assigned_data { /* A job was asigned to a CPU. */
40struct st_switch_to_data { /* A process was switched to on a given CPU. */ 41struct st_switch_to_data { /* A process was switched to on a given CPU. */
41 u64 when; /* When did this occur? */ 42 u64 when; /* When did this occur? */
42 u32 exec_time; /* Time the current job has executed. */ 43 u32 exec_time; /* Time the current job has executed. */
44 u8 __unused[4];
43 45
44}; 46};
45 47