diff options
Diffstat (limited to 'tools/perf/bench/bench.h')
-rw-r--r-- | tools/perf/bench/bench.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/perf/bench/bench.h b/tools/perf/bench/bench.h new file mode 100644 index 000000000000..9fbd8d745fa1 --- /dev/null +++ b/tools/perf/bench/bench.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef BENCH_H | ||
2 | #define BENCH_H | ||
3 | |||
4 | extern int bench_sched_messaging(int argc, const char **argv, const char *prefix); | ||
5 | extern int bench_sched_pipe(int argc, const char **argv, const char *prefix); | ||
6 | |||
7 | #define BENCH_FORMAT_DEFAULT_STR "default" | ||
8 | #define BENCH_FORMAT_DEFAULT 0 | ||
9 | #define BENCH_FORMAT_SIMPLE_STR "simple" | ||
10 | #define BENCH_FORMAT_SIMPLE 1 | ||
11 | |||
12 | #define BENCH_FORMAT_UNKNOWN -1 | ||
13 | |||
14 | extern int bench_format; | ||
15 | |||
16 | #endif | ||