diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-10-23 16:31:22 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-10-23 16:31:22 -0400 |
commit | c1db2ad7a69a86fb77674a2786256a4418528657 (patch) | |
tree | b499d965d163089cffb62d7cc45e9664fe601183 /include/litmus | |
parent | c285117cf88204007e4fce672b964c6ab015e6bc (diff) |
Output additional data in MC completion records.
Diffstat (limited to 'include/litmus')
-rw-r--r-- | include/litmus/rt_param.h | 2 | ||||
-rw-r--r-- | include/litmus/sched_trace.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index 2a5cdecb4f46..42f5b4f66a3d 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -277,6 +277,8 @@ struct rt_param { | |||
277 | 277 | ||
278 | lt_t load; | 278 | lt_t load; |
279 | lt_t flush; | 279 | lt_t flush; |
280 | int load_work; | ||
281 | int flush_work; | ||
280 | 282 | ||
281 | lt_t max_exec_time; | 283 | lt_t max_exec_time; |
282 | lt_t tot_exec_time; | 284 | lt_t tot_exec_time; |
diff --git a/include/litmus/sched_trace.h b/include/litmus/sched_trace.h index 2f15da3c9e36..cb8758f8aebf 100644 --- a/include/litmus/sched_trace.h +++ b/include/litmus/sched_trace.h | |||
@@ -52,7 +52,9 @@ struct st_switch_away_data { /* A process was switched away from on a given CPU. | |||
52 | }; | 52 | }; |
53 | 53 | ||
54 | struct st_completion_data { /* A job completed. */ | 54 | struct st_completion_data { /* A job completed. */ |
55 | u64 when; | 55 | u32 exec; |
56 | u16 flush_work; | ||
57 | u16 load_work; | ||
56 | u32 flush; | 58 | u32 flush; |
57 | u32 load; | 59 | u32 load; |
58 | /* u8 forced:1; /\* Set to 1 if job overran and kernel advanced to the */ | 60 | /* u8 forced:1; /\* Set to 1 if job overran and kernel advanced to the */ |