blob: 579a592990dd996bfd16fcf7214a30567a6b24f2 [file] [log] [blame]
Hitoshi Mitakec426bba2009-11-05 09:31:31 +09001#ifndef BENCH_H
2#define BENCH_H
3
Vinson Leed1398cc2013-03-13 15:34:24 -07004/*
5 * The madvise transparent hugepage constants were added in glibc
6 * 2.13. For compatibility with older versions of glibc, define these
7 * tokens if they are not already defined.
8 *
9 * PA-RISC uses different madvise values from other architectures and
10 * needs to be special-cased.
11 */
12#ifdef __hppa__
13# ifndef MADV_HUGEPAGE
14# define MADV_HUGEPAGE 67
15# endif
16# ifndef MADV_NOHUGEPAGE
17# define MADV_NOHUGEPAGE 68
18# endif
19#else
20# ifndef MADV_HUGEPAGE
21# define MADV_HUGEPAGE 14
22# endif
23# ifndef MADV_NOHUGEPAGE
24# define MADV_NOHUGEPAGE 15
25# endif
26#endif
27
Arnaldo Carvalho de Melo3938bad2016-03-23 15:06:35 -030028int bench_numa(int argc, const char **argv, const char *prefix);
29int bench_sched_messaging(int argc, const char **argv, const char *prefix);
30int bench_sched_pipe(int argc, const char **argv, const char *prefix);
31int bench_mem_memcpy(int argc, const char **argv, const char *prefix);
32int bench_mem_memset(int argc, const char **argv, const char *prefix);
33int bench_futex_hash(int argc, const char **argv, const char *prefix);
34int bench_futex_wake(int argc, const char **argv, const char *prefix);
35int bench_futex_wake_parallel(int argc, const char **argv, const char *prefix);
36int bench_futex_requeue(int argc, const char **argv, const char *prefix);
Davidlohr Buesod2f3f5d2015-07-07 01:55:53 -070037/* pi futexes */
Arnaldo Carvalho de Melo3938bad2016-03-23 15:06:35 -030038int bench_futex_lock_pi(int argc, const char **argv, const char *prefix);
Hitoshi Mitakec426bba2009-11-05 09:31:31 +090039
Ingo Molnar606bc1e2009-11-10 20:50:53 +090040#define BENCH_FORMAT_DEFAULT_STR "default"
41#define BENCH_FORMAT_DEFAULT 0
42#define BENCH_FORMAT_SIMPLE_STR "simple"
43#define BENCH_FORMAT_SIMPLE 1
Hitoshi Mitake242aa142009-11-10 08:19:59 +090044
Ingo Molnar606bc1e2009-11-10 20:50:53 +090045#define BENCH_FORMAT_UNKNOWN -1
Hitoshi Mitake242aa142009-11-10 08:19:59 +090046
47extern int bench_format;
Davidlohr Buesob6f06292014-06-16 11:14:19 -070048extern unsigned int bench_repeat;
Hitoshi Mitake242aa142009-11-10 08:19:59 +090049
Hitoshi Mitakec426bba2009-11-05 09:31:31 +090050#endif