aboutsummaryrefslogtreecommitdiffstats
path: root/trace-graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'trace-graph.h')
-rw-r--r--trace-graph.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/trace-graph.h b/trace-graph.h
index 7cfe0a2..fc4ea2c 100644
--- a/trace-graph.h
+++ b/trace-graph.h
@@ -61,6 +61,22 @@ struct graph_info {
61 gint systems_size; 61 gint systems_size;
62 gint event_ids_size; 62 gint event_ids_size;
63 63
64 /* cache of event fields */
65 gint ftrace_sched_switch_id;
66 gint event_sched_switch_id;
67 gint event_wakeup_id;
68 gint event_wakeup_new_id;
69 struct format_field *event_pid_field;
70 struct format_field *event_comm_field;
71 struct format_field *ftrace_pid_field;
72 struct format_field *ftrace_comm_field;
73 struct format_field *wakeup_pid_field;
74 struct format_field *wakeup_success_field;
75 struct format_field *wakeup_new_pid_field;
76 struct format_field *wakeup_new_success_field;
77
78 gboolean read_comms; /* Read all comms on first load */
79
64 struct filter_task *task_filter; 80 struct filter_task *task_filter;
65 gint filter_task_selected; 81 gint filter_task_selected;
66 82