aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/session.h
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2009-12-15 17:04:39 -0500
committerIngo Molnar <mingo@elte.hu>2009-12-16 02:53:48 -0500
commit75be6cf48738aec68aac49b428423569492cfba3 (patch)
treed7f5ceb028361e8b725ba6f3b8219e66c7b89790 /tools/perf/util/session.h
parent7ef17aafc98406d01ebbf7fe98ef1332b70d20bb (diff)
perf symbols: Make symbol_conf global
This simplifies a lot of functions, less stuff to be done by tool writers. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frédéric Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> LKML-Reference: <1260914682-29652-1-git-send-email-acme@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/session.h')
-rw-r--r--tools/perf/util/session.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/tools/perf/util/session.h b/tools/perf/util/session.h
index bdfc4b8eee7a..faf18a8e0311 100644
--- a/tools/perf/util/session.h
+++ b/tools/perf/util/session.h
@@ -10,7 +10,6 @@
10struct ip_callchain; 10struct ip_callchain;
11struct thread; 11struct thread;
12struct symbol; 12struct symbol;
13struct symbol_conf;
14 13
15struct perf_session { 14struct perf_session {
16 struct perf_header header; 15 struct perf_header header;
@@ -26,7 +25,6 @@ struct perf_session {
26 int fd; 25 int fd;
27 int cwdlen; 26 int cwdlen;
28 char *cwd; 27 char *cwd;
29 bool use_modules;
30 bool use_callchain; 28 bool use_callchain;
31 char filename[0]; 29 char filename[0];
32}; 30};
@@ -48,8 +46,7 @@ struct perf_event_ops {
48 bool full_paths; 46 bool full_paths;
49}; 47};
50 48
51struct perf_session *perf_session__new(const char *filename, int mode, 49struct perf_session *perf_session__new(const char *filename, int mode, bool force);
52 bool force, struct symbol_conf *conf);
53void perf_session__delete(struct perf_session *self); 50void perf_session__delete(struct perf_session *self);
54 51
55int perf_session__process_events(struct perf_session *self, 52int perf_session__process_events(struct perf_session *self,