diff options
| author | Hitoshi Mitake <[email protected]> | 2009-11-10 08:19:59 +0900 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2009-11-10 04:53:48 +0100 |
| commit | 242aa14a67f4e19453fc8a51cffc5ac5ee5bcbd1 (patch) | |
| tree | 12dbcf1ca040023a098d827c49a5b0e1e17849ae | |
| parent | 5ff0cfc67f00fe0feaa1da0b2359232ea4aa0ee7 (diff) | |
perf bench: Add format constants to bench.h for unified output formatting
This patch adds some constants and extern declaration to
bench.h. These are used for unified output formatting
of 'perf bench'.
Signed-off-by: Hitoshi Mitake <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Paul Mackerras <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | tools/perf/bench/bench.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/perf/bench/bench.h b/tools/perf/bench/bench.h index 59adb279cd7a..42167ea41944 100644 --- a/tools/perf/bench/bench.h +++ b/tools/perf/bench/bench.h @@ -6,4 +6,13 @@ extern int bench_sched_messaging(int argc, const char **argv, extern int bench_sched_pipe(int argc, const char **argv, const char *prefix); +#define BENCH_FORMAT_DEFAULT_STR "default" +#define BENCH_FORMAT_DEFAULT 0 +#define BENCH_FORMAT_SIMPLE_STR "simple" +#define BENCH_FORMAT_SIMPLE 1 + +#define BENCH_FORMAT_UNKNOWN -1 + +extern int bench_format; + #endif |