diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-01-04 15:13:04 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-01-04 15:13:04 -0500 |
commit | 39baeecb4afb317f8a20187f4edb280f4448e4df (patch) | |
tree | 6032f09dadc800715275eb8d156b1b1225ff7cfd /trace-view-store.h | |
parent | f4541daee0c39a10bb886d38cf9f742fa7acc2a3 (diff) |
kernel-shark: Enabled filtering of tasks for list and graph
The list and graph can now filter tasks.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'trace-view-store.h')
-rw-r--r-- | trace-view-store.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/trace-view-store.h b/trace-view-store.h index 687a946..c7738da 100644 --- a/trace-view-store.h +++ b/trace-view-store.h | |||
@@ -3,6 +3,7 @@ | |||
3 | 3 | ||
4 | #include <gtk/gtk.h> | 4 | #include <gtk/gtk.h> |
5 | #include "trace-cmd.h" | 5 | #include "trace-cmd.h" |
6 | #include "trace-hash.h" | ||
6 | 7 | ||
7 | /* Some boilerplate GObject defines. 'klass' is used | 8 | /* Some boilerplate GObject defines. 'klass' is used |
8 | * instead of 'class', because 'class' is a C++ keyword */ | 9 | * instead of 'class', because 'class' is a C++ keyword */ |
@@ -118,6 +119,8 @@ guint64 trace_view_store_get_time_from_row(TraceViewStore *store, gint row); | |||
118 | 119 | ||
119 | guint64 trace_view_store_get_offset_from_row(TraceViewStore *store, gint row); | 120 | guint64 trace_view_store_get_offset_from_row(TraceViewStore *store, gint row); |
120 | 121 | ||
122 | void trace_view_store_filter_tasks(TraceViewStore *store, struct filter_task *filter); | ||
123 | |||
121 | /* TraceViewStoreClass: more boilerplate GObject stuff */ | 124 | /* TraceViewStoreClass: more boilerplate GObject stuff */ |
122 | 125 | ||
123 | struct _TraceViewStoreClass | 126 | struct _TraceViewStoreClass |