diff options
Diffstat (limited to 'rt-plot-vcpu.h')
-rw-r--r-- | rt-plot-vcpu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rt-plot-vcpu.h b/rt-plot-vcpu.h index 3ef33ce..6bb3a3f 100644 --- a/rt-plot-vcpu.h +++ b/rt-plot-vcpu.h | |||
@@ -12,13 +12,21 @@ struct vcpu_info { | |||
12 | int task_cpu; | 12 | int task_cpu; |
13 | unsigned long long task_run_time; | 13 | unsigned long long task_run_time; |
14 | gboolean task_running; | 14 | gboolean task_running; |
15 | gboolean task_exec; | ||
15 | 16 | ||
16 | /* How the vcpu is running */ | 17 | /* How the vcpu is running */ |
17 | int server_job; | 18 | int server_job; |
18 | int server_cpu; | 19 | int server_cpu; |
19 | unsigned long long server_run_time; | 20 | unsigned long long server_run_time; |
21 | gboolean server_running; | ||
22 | |||
23 | /* Server blocking */ | ||
24 | unsigned long long block_time; | ||
25 | int block_cpu; | ||
26 | gboolean blocked; | ||
20 | 27 | ||
21 | gboolean fresh; | 28 | gboolean fresh; |
29 | gboolean spare; | ||
22 | 30 | ||
23 | /* False if we should only show what the vcpu is running, not | 31 | /* False if we should only show what the vcpu is running, not |
24 | * WHEN the CPU is running | 32 | * WHEN the CPU is running |