aboutsummaryrefslogtreecommitdiffstats
path: root/rt-plot-task.h
diff options
context:
space:
mode:
Diffstat (limited to 'rt-plot-task.h')
-rw-r--r--rt-plot-task.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/rt-plot-task.h b/rt-plot-task.h
new file mode 100644
index 0000000..4cb957a
--- /dev/null
+++ b/rt-plot-task.h
@@ -0,0 +1,22 @@
1#ifndef __RT_PLOT_TASK_H
2#define __RT_PLOT_TASK_H
3
4#include "trace-plot-task.h"
5
6struct rt_task_info {
7 struct task_plot_info base;
8 unsigned long long wcet;
9 unsigned long long period;
10 unsigned long long block_time;
11 int last_job;
12};
13
14void rt_plot_task(struct graph_info *ginfo, int pid, int pos);
15void rt_plot_task_plotted(struct graph_info *ginfo,
16 gint **plotted);
17void rt_plot_task_update_callback(gboolean accept,
18 gint *selected,
19 gint *non_select,
20 gpointer data);
21
22#endif