debug: make __dprint() have printf() like argument type checking
[fio.git] / debug.c
CommitLineData
bf84eacb
JA
1#include <stdarg.h>
2#include <sys/types.h>
3#include <unistd.h>
4#include "debug.h"
5
2d5c40e7 6#ifdef FIO_INC_DEBUG
bf84eacb
JA
7void __dprint(int type, const char *str, ...)
8{
9 va_list args;
10 pid_t pid;
11
12 assert(type < FD_DEBUG_MAX);
13
bf84eacb 14 if (fio_debug_jobp && *fio_debug_jobp != -1U
8037423f 15 && (pid = getpid() != *fio_debug_jobp))
bf84eacb
JA
16 return;
17
46c48f1f
JA
18 log_local("%-8s ", debug_levels[type].name);
19 log_local("%-5u ", (int) pid);
bf84eacb
JA
20
21 va_start(args, str);
d048ba60 22 log_valist(str, args);
bf84eacb
JA
23 va_end(args);
24}
2d5c40e7 25#endif