diff options
Diffstat (limited to 'rt-plot-container.h')
-rw-r--r-- | rt-plot-container.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/rt-plot-container.h b/rt-plot-container.h new file mode 100644 index 0000000..e6c57b0 --- /dev/null +++ b/rt-plot-container.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef __RT_PLOT_CONTAINER_H | ||
2 | #define __RT_PLOT_CONTAINER_H | ||
3 | |||
4 | #include "rt-plot-vcpu.h" | ||
5 | |||
6 | typedef void (*cont_dialog_cb_func)(gboolean, gint*, gint*, gpointer); | ||
7 | |||
8 | void trace_container_dialog(struct graph_info *ginfo, | ||
9 | gpointer data); | ||
10 | void rt_plot_container(struct graph_info *ginfo, int cid); | ||
11 | int rt_plot_get_containers(struct graph_info *ginfo, gint **plotted, | ||
12 | gboolean plotted_only); | ||
13 | void rt_plot_add_all_containers(struct graph_info *ginfo); | ||
14 | |||
15 | int get_server_info(struct graph_info *ginfo, | ||
16 | struct rt_plot_common *rt, | ||
17 | int match_sid, unsigned long long time, | ||
18 | unsigned long long *release, unsigned long long *deadline, | ||
19 | int *job, int *tid, struct record **record); | ||
20 | |||
21 | #endif | ||