Home | History | Annotate | Download | only in bench
      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, const char *prefix __used);
      7 
      8 #define BENCH_FORMAT_DEFAULT_STR	"default"
      9 #define BENCH_FORMAT_DEFAULT		0
     10 #define BENCH_FORMAT_SIMPLE_STR		"simple"
     11 #define BENCH_FORMAT_SIMPLE		1
     12 
     13 #define BENCH_FORMAT_UNKNOWN		-1
     14 
     15 extern int bench_format;
     16 
     17 #endif
     18