Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
bench.h
Go to the documentation of this file.
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 extern int bench_mem_memcpy(int argc, const char **argv,
7  const char *prefix __maybe_unused);
8 extern int bench_mem_memset(int argc, const char **argv, const char *prefix);
9 
10 #define BENCH_FORMAT_DEFAULT_STR "default"
11 #define BENCH_FORMAT_DEFAULT 0
12 #define BENCH_FORMAT_SIMPLE_STR "simple"
13 #define BENCH_FORMAT_SIMPLE 1
14 
15 #define BENCH_FORMAT_UNKNOWN -1
16 
17 extern int bench_format;
18 
19 #endif