aboutsummaryrefslogtreecommitdiffstats
path: root/rt-plot-task.h
diff options
context:
space:
mode:
Diffstat (limited to 'rt-plot-task.h')
-rw-r--r--rt-plot-task.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/rt-plot-task.h b/rt-plot-task.h
index d3464e9..9f031e9 100644
--- a/rt-plot-task.h
+++ b/rt-plot-task.h
@@ -10,17 +10,18 @@ struct rt_task_info {
10 10
11 /* For drawing squares */ 11 /* For drawing squares */
12 unsigned long long run_time; 12 unsigned long long run_time;
13 int run_cpu;
13 unsigned long long block_time; 14 unsigned long long block_time;
15 int block_cpu;
14 16
15 /* For managing state */ 17 /* For managing state */
16 int last_job; 18 int last_job;
17 int last_cpu;
18 unsigned long long last_time;
19 19
20 /* Used to get around bugs(ish) */ 20 /* Used to get around bugs(ish) */
21 unsigned long long first_rels[3]; 21 unsigned long long first_rels[3];
22 22
23 gboolean params_found; 23 gboolean params_found;
24 gboolean fresh;
24 char *label; 25 char *label;
25}; 26};
26 27