blob: eb63167845758de4c4352ed67e6268da5cae2ca0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __RT_PLOT_CPU_H
#define __RT_PLOT_CPU_H
struct rt_cpu_info {
int cpu;
int run_pid;
unsigned long long rt_run_time;
unsigned long long reg_run_time;
gboolean fresh;
char *label;
};
void rt_plot_cpu(struct graph_info *ginfo, int cpu);
void rt_plot_cpus_plotted(struct graph_info *ginfo,
gboolean *all_cpus, guint64 **cpu_mask);
void rt_plot_cpus_update_callback(gboolean accept,
gboolean all_cpus,
guint64 *selected_cpu_mask,
gpointer data);
#endif
|