diff options
Diffstat (limited to 'rt-plot-vcpu.h')
-rw-r--r-- | rt-plot-vcpu.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/rt-plot-vcpu.h b/rt-plot-vcpu.h new file mode 100644 index 0000000..14add34 --- /dev/null +++ b/rt-plot-vcpu.h | |||
@@ -0,0 +1,22 @@ | |||
1 | #include "trace-graph.h" | ||
2 | |||
3 | struct vcpu_list; | ||
4 | |||
5 | struct vcpu_info { | ||
6 | struct rt_plot_common common; | ||
7 | |||
8 | int sid; | ||
9 | int run_tid; | ||
10 | int run_cpu; | ||
11 | unsigned long long run_time; | ||
12 | int block_cpu; | ||
13 | unsigned long long block_time; | ||
14 | gboolean fresh; | ||
15 | gboolean running; | ||
16 | char *label; | ||
17 | |||
18 | struct cont_list *cont; | ||
19 | }; | ||
20 | |||
21 | void insert_vcpu(struct graph_info *ginfo, struct cont_list *cont, | ||
22 | struct vcpu_list *vcpu_info); | ||