aboutsummaryrefslogtreecommitdiffstats
path: root/rt-plot-vcpu.h
blob: 14add345bc324ba314ee4d54c9f4090b05dabfc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "trace-graph.h"

struct vcpu_list;

struct vcpu_info {
	struct rt_plot_common	common;

	int			sid;
	int			run_tid;
	int			run_cpu;
	unsigned long long	run_time;
	int			block_cpu;
	unsigned long long	block_time;
	gboolean		fresh;
	gboolean		running;
	char			*label;

	struct cont_list	*cont;
};

void insert_vcpu(struct graph_info *ginfo, struct cont_list *cont,
		 struct vcpu_list *vcpu_info);