-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.h
53 lines (44 loc) · 936 Bytes
/
debug.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef FIO_DEBUG_H
#define FIO_DEBUG_H
#include <assert.h>
#include "log.h"
enum {
FD_PROCESS = 0,
FD_FILE,
FD_IO,
FD_MEM,
FD_BLKTRACE,
FD_VERIFY,
FD_RANDOM,
FD_PARSE,
FD_DISKUTIL,
FD_JOB,
FD_MUTEX,
FD_DEBUG_MAX,
};
extern unsigned int fio_debug_jobno, *fio_debug_jobp;
#ifdef FIO_INC_DEBUG
struct debug_level {
const char *name;
unsigned long shift;
unsigned int jobno;
};
extern struct debug_level debug_levels[];
extern unsigned long fio_debug;
#define dprint(type, str, args...) \
do { \
pid_t pid = getpid(); \
assert(type < FD_DEBUG_MAX); \
if ((((1 << type)) & fio_debug) == 0) \
break; \
if (fio_debug_jobp && *fio_debug_jobp != -1U \
&& pid != *fio_debug_jobp) \
break; \
log_info("%-8s ", debug_levels[(type)].name); \
log_info("%-5u ", (int) pid); \
log_info(str, ##args); \
} while (0)
#else
#define dprint(type, str, args...)
#endif
#endif