diff options
Diffstat (limited to 'rt-plot-task.h')
-rw-r--r-- | rt-plot-task.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rt-plot-task.h b/rt-plot-task.h index a66de39..d3464e9 100644 --- a/rt-plot-task.h +++ b/rt-plot-task.h | |||
@@ -4,17 +4,18 @@ | |||
4 | #include "trace-plot-task.h" | 4 | #include "trace-plot-task.h" |
5 | 5 | ||
6 | struct rt_task_info { | 6 | struct rt_task_info { |
7 | struct task_plot_info base; | ||
8 | |||
9 | int pid; | 7 | int pid; |
10 | unsigned long long wcet; | 8 | unsigned long long wcet; |
11 | unsigned long long period; | 9 | unsigned long long period; |
12 | 10 | ||
11 | /* For drawing squares */ | ||
13 | unsigned long long run_time; | 12 | unsigned long long run_time; |
14 | unsigned long long block_time; | 13 | unsigned long long block_time; |
15 | 14 | ||
15 | /* For managing state */ | ||
16 | int last_job; | 16 | int last_job; |
17 | int last_cpu; | 17 | int last_cpu; |
18 | unsigned long long last_time; | ||
18 | 19 | ||
19 | /* Used to get around bugs(ish) */ | 20 | /* Used to get around bugs(ish) */ |
20 | unsigned long long first_rels[3]; | 21 | unsigned long long first_rels[3]; |