Fix bug where measurements were not printed in the correct order when steady state...
[fio.git] / debug.h
CommitLineData
a3d741fa
JA
1#ifndef FIO_DEBUG_H
2#define FIO_DEBUG_H
3
4#include <assert.h>
5#include "log.h"
6
7enum {
8 FD_PROCESS = 0,
9 FD_FILE,
10 FD_IO,
11 FD_MEM,
12 FD_BLKTRACE,
13 FD_VERIFY,
14 FD_RANDOM,
15 FD_PARSE,
cd991b9e 16 FD_DISKUTIL,
5e1d306e 17 FD_JOB,
29adda3c 18 FD_MUTEX,
79d16311 19 FD_PROFILE,
c223da83 20 FD_TIME,
eb7976ef 21 FD_NET,
3e260a46 22 FD_RATE,
0c56718d 23 FD_COMPRESS,
16e56d25 24 FD_STEADYSTATE,
a3d741fa
JA
25 FD_DEBUG_MAX,
26};
27
69b98d4c
JA
28extern unsigned int fio_debug_jobno, *fio_debug_jobp;
29
a3d741fa
JA
30#ifdef FIO_INC_DEBUG
31struct debug_level {
32 const char *name;
0b8d11ed 33 const char *help;
a3d741fa 34 unsigned long shift;
5e1d306e 35 unsigned int jobno;
a3d741fa
JA
36};
37extern struct debug_level debug_levels[];
38
39extern unsigned long fio_debug;
40
985ee30c 41void __dprint(int type, const char *str, ...) __attribute__((format (printf, 2, 3)));
bf84eacb
JA
42
43#define dprint(type, str, args...) \
44 do { \
45 if ((((1 << type)) & fio_debug) == 0) \
46 break; \
47 __dprint((type), (str), ##args); \
48 } while (0) \
a3d741fa
JA
49
50#else
51
bf84eacb
JA
52static inline void dprint(int type, const char *str, ...)
53{
54}
a3d741fa
JA
55#endif
56
57#endif