blob: d29e57c446d36df55ddfdbfd18e1874c2364264b [file] [log] [blame]
Arnaud Patardca233082010-01-08 08:40:00 -05001#ifndef _DEBUG_H
2#define _DEBUG_H
3
Juan Cespedescd8976d2009-05-14 13:47:58 +02004/* debug levels:
5 */
6enum {
Juan Cespedesc5c744a2009-07-23 18:22:58 +02007 DEBUG_EVENT = 010,
8 DEBUG_PROCESS = 020,
9 DEBUG_FUNCTION = 040
Juan Cespedescd8976d2009-05-14 13:47:58 +020010};
11
12void debug_(int level, const char *file, int line,
13 const char *fmt, ...) __attribute__((format(printf,4,5)));
Ian Wienand9a2ad352006-02-20 22:44:45 +010014
Ian Wienand9a2ad352006-02-20 22:44:45 +010015int xinfdump(long, void *, int);
16
Juan Cespedescd8976d2009-05-14 13:47:58 +020017# define debug(level, expr...) debug_(level, __FILE__, __LINE__, expr)
Juan Cespedescac15c32003-01-31 18:58:58 +010018
Arnaud Patardca233082010-01-08 08:40:00 -050019#endif