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