hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*  cpufreq-bench CPUFreq microbenchmark
 *
 *  Copyright (C) 2008 Christian Kornacker <ckornacker@suse.de>
 */
 
/* initial loop count for the load calibration */
#define GAUGECOUNT    1500
 
/* default scheduling policy SCHED_OTHER */
#define SCHEDULER    SCHED_OTHER
 
#define PRIORITY_DEFAULT 0
#define PRIORITY_HIGH     sched_get_priority_max(SCHEDULER)
#define PRIORITY_LOW     sched_get_priority_min(SCHEDULER)
 
/* enable further debug messages */
#ifdef DEBUG
#define dprintf printf
#else
#define dprintf(...) do { } while (0)
#endif