summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/thread.h
diff options
context:
space:
mode:
authorDavid Ahern <dsahern@gmail.com>2013-06-07 16:22:12 -0600
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-07-12 13:45:56 -0300
commitba58041a8f0f0437c6c33414aa0d3fcf62ba90a5 (patch)
tree0e495602723781898cf90dc3ca4edcaaae4bdba5 /tools/perf/util/thread.h
parent4e319027a7aee58ce8d409f5597b418f08307841 (diff)
downloadop-kernel-dev-ba58041a8f0f0437c6c33414aa0d3fcf62ba90a5.zip
op-kernel-dev-ba58041a8f0f0437c6c33414aa0d3fcf62ba90a5.tar.gz
perf tools: Add methods for setting/retrieving priv element of thread struct
Signed-off-by: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1370643734-9579-3-git-send-email-dsahern@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/thread.h')
-rw-r--r--tools/perf/util/thread.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/perf/util/thread.h b/tools/perf/util/thread.h
index eeb7ac6..5e7ba35 100644
--- a/tools/perf/util/thread.h
+++ b/tools/perf/util/thread.h
@@ -47,4 +47,14 @@ void thread__find_addr_location(struct thread *thread, struct machine *machine,
u8 cpumode, enum map_type type, u64 addr,
struct addr_location *al,
symbol_filter_t filter);
+
+static inline void *thread__priv(struct thread *thread)
+{
+ return thread->priv;
+}
+
+static inline void thread__set_priv(struct thread *thread, void *p)
+{
+ thread->priv = p;
+}
#endif /* __PERF_THREAD_H */
OpenPOWER on IntegriCloud