aboutsummaryrefslogtreecommitdiffstats
path: root/rt-graph.h
diff options
context:
space:
mode:
authorJonathan <hermanjl@hermanjl-Aspire-5553G.(none)>2012-03-05 18:00:39 -0500
committerJonathan <hermanjl@hermanjl-Aspire-5553G.(none)>2012-03-05 18:00:39 -0500
commit61266395ff4f371933c104cff6671aae7f43c3fd (patch)
tree4e0c1bf15015a80a57db728c5857005234481f4b /rt-graph.h
parent8bcd73ddae5d74fb9b2b8aaedd3aa6a39ef3f75d (diff)
rt-graph: real-time tasks can be added / removed from the graph
Currently they copy the functionality of regular task.
Diffstat (limited to 'rt-graph.h')
-rw-r--r--rt-graph.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/rt-graph.h b/rt-graph.h
index 3037301..3357b52 100644
--- a/rt-graph.h
+++ b/rt-graph.h
@@ -2,8 +2,9 @@
2#define _RT_GRAPH_H 2#define _RT_GRAPH_H
3 3
4#include <gtk/gtk.h> 4#include <gtk/gtk.h>
5#include "trace-cmd.h"
6#include "task-list.h" 5#include "task-list.h"
6#include "trace-cmd.h"
7#include "rt-plot-task.h"
7 8
8struct rt_graph_info { 9struct rt_graph_info {
9 10
@@ -59,12 +60,4 @@ int rt_graph_check_task_resume(struct rt_graph_info *rtinfo, struct pevent *peve
59 unsigned long long *when); 60 unsigned long long *when);
60void init_rt_event_cache(struct rt_graph_info *rtinfo); 61void init_rt_event_cache(struct rt_graph_info *rtinfo);
61 62
62/* Metadata */
63void rt_plot_task_plotted(struct rt_graph_info *rt_info, gint **plotted);
64
65/* Callbacks for managing task list */
66void rt_plot_task_update_callback(gboolean accept, gint *selected,
67 gint *non_select, gpointer data);
68void rt_plot_task_plotted(struct rt_graph_info *rtinfo, gint **plotted);
69
70#endif 63#endif