diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-05-26 05:10:09 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-05-26 05:26:34 -0400 |
commit | 8ad8db3788fd9a449941fb2392ca85af4ee1cde1 (patch) | |
tree | 8c88edd7cdd4ecce57cda2c46b6dd544d00f97df /Documentation/perf_counter/util/parse-events.h | |
parent | 0e9b20b8a1cab6c6ab4f98f917a2d98783103969 (diff) |
perf_counter tools: Librarize event string parsing
Extract the event string parser from builtin-record.c, and
librarize it - to be reused in other commands.
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: John Kacur <jkacur@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/perf_counter/util/parse-events.h')
-rw-r--r-- | Documentation/perf_counter/util/parse-events.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/perf_counter/util/parse-events.h b/Documentation/perf_counter/util/parse-events.h new file mode 100644 index 000000000000..6e2ebe5ff7d7 --- /dev/null +++ b/Documentation/perf_counter/util/parse-events.h | |||
@@ -0,0 +1,10 @@ | |||
1 | |||
2 | extern int nr_counters; | ||
3 | extern __u64 event_id[MAX_COUNTERS]; | ||
4 | |||
5 | extern int parse_events(const struct option *opt, const char *str, int unset); | ||
6 | |||
7 | #define EVENTS_HELP_MAX (128*1024) | ||
8 | |||
9 | extern void create_events_help(char *help_msg); | ||
10 | |||