From 8da61292f595c5e700a4fef981b0e0d07910b4b2 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 30 Apr 2015 19:51:49 +0200 Subject: Provide an interface for logging debug messages --- pcilib/debug.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 pcilib/debug.h (limited to 'pcilib/debug.h') diff --git a/pcilib/debug.h b/pcilib/debug.h new file mode 100644 index 0000000..f9134be --- /dev/null +++ b/pcilib/debug.h @@ -0,0 +1,23 @@ +#ifndef _PCILIB_DEBUG_H +#define _PCILIB_DEBUG_H + +#define PCILIB_DEBUG + +#ifdef PCILIB_DEBUG +# define PCILIB_DEBUG_DMA +#endif /* PCILIB_DEBUG */ + + +#ifdef PCILIB_DEBUG_DMA +# define PCILIB_DEBUG_DMA_CALL(function, ...) pcilib_debug_message (#function, __FILE__, __LINE__, __VA_ARGS__) +#else /* PCILIB_DEBUG_DMA */ +# define PCILIB_DEBUG_DMA_CALL(function, ...) +#endif /* PCILIB_DEBUG_DMA */ + +#define pcilib_debug(function, ...) \ + PCILIB_DEBUG_##function##_CALL(PCILIB_DEBUG_##function, __VA_ARGS__) + +void pcilib_debug_message(const char *function, const char *file, int line, const char *format, ...); + + +#endif /* _PCILIB_DEBUG_H */ -- cgit v1.2.3