aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2011-01-30 15:10:49 -0500
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2011-02-01 16:21:57 -0500
commit3cb35a8d90658bd8fb6f9b4f60eb7f97d0643313 (patch)
tree0591652435a28ac8c033baa258f5b3851ed362e7 /include/litmus
parent904531a6321964579ab0972a8833616e97dbf582 (diff)
Added task class to feather trace param record.
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