diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2009-06-03 05:24:33 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-03 08:14:31 -0400 |
commit | e61078a0c88773d3465b0b9d665c5ed6b952b1cf (patch) | |
tree | 3a6bc9823f9ca6e8da2f21e0e9eb2063530bde63 /Documentation/perf_counter/util/parse-options.h | |
parent | 226f62fdd53d5b2c74e242aa11f6ad43d0285d3f (diff) |
perf record: Use long arg for counter period
I wrote this to test the extended period emulation, we might as
well merge it.
Signed-off-by: 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: Thomas Gleixner <tglx@linutronix.de>
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-options.h')
-rw-r--r-- | Documentation/perf_counter/util/parse-options.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/perf_counter/util/parse-options.h b/Documentation/perf_counter/util/parse-options.h index a81c7faff68e..a1039a6ce0eb 100644 --- a/Documentation/perf_counter/util/parse-options.h +++ b/Documentation/perf_counter/util/parse-options.h | |||
@@ -14,6 +14,7 @@ enum parse_opt_type { | |||
14 | /* options with arguments (usually) */ | 14 | /* options with arguments (usually) */ |
15 | OPTION_STRING, | 15 | OPTION_STRING, |
16 | OPTION_INTEGER, | 16 | OPTION_INTEGER, |
17 | OPTION_LONG, | ||
17 | OPTION_CALLBACK, | 18 | OPTION_CALLBACK, |
18 | }; | 19 | }; |
19 | 20 | ||
@@ -97,6 +98,7 @@ struct option { | |||
97 | #define OPT_SET_INT(s, l, v, h, i) { OPTION_SET_INT, (s), (l), (v), NULL, (h), 0, NULL, (i) } | 98 | #define OPT_SET_INT(s, l, v, h, i) { OPTION_SET_INT, (s), (l), (v), NULL, (h), 0, NULL, (i) } |
98 | #define OPT_SET_PTR(s, l, v, h, p) { OPTION_SET_PTR, (s), (l), (v), NULL, (h), 0, NULL, (p) } | 99 | #define OPT_SET_PTR(s, l, v, h, p) { OPTION_SET_PTR, (s), (l), (v), NULL, (h), 0, NULL, (p) } |
99 | #define OPT_INTEGER(s, l, v, h) { OPTION_INTEGER, (s), (l), (v), NULL, (h) } | 100 | #define OPT_INTEGER(s, l, v, h) { OPTION_INTEGER, (s), (l), (v), NULL, (h) } |
101 | #define OPT_LONG(s, l, v, h) { OPTION_LONG, (s), (l), (v), NULL, (h) } | ||
100 | #define OPT_STRING(s, l, v, a, h) { OPTION_STRING, (s), (l), (v), (a), (h) } | 102 | #define OPT_STRING(s, l, v, a, h) { OPTION_STRING, (s), (l), (v), (a), (h) } |
101 | #define OPT_DATE(s, l, v, h) \ | 103 | #define OPT_DATE(s, l, v, h) \ |
102 | { OPTION_CALLBACK, (s), (l), (v), "time",(h), 0, \ | 104 | { OPTION_CALLBACK, (s), (l), (v), "time",(h), 0, \ |