bench.h 411 B

12345678910111213141516
  1. #ifndef BENCH_H
  2. #define BENCH_H
  3. extern int bench_sched_messaging(int argc, const char **argv, const char *prefix);
  4. extern int bench_sched_pipe(int argc, const char **argv, const char *prefix);
  5. #define BENCH_FORMAT_DEFAULT_STR "default"
  6. #define BENCH_FORMAT_DEFAULT 0
  7. #define BENCH_FORMAT_SIMPLE_STR "simple"
  8. #define BENCH_FORMAT_SIMPLE 1
  9. #define BENCH_FORMAT_UNKNOWN -1
  10. extern int bench_format;
  11. #endif