summaryrefslogtreecommitdiffstats
path: root/pcilib
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2015-04-30 20:18:57 +0200
committerSuren A. Chilingaryan <csa@suren.me>2015-04-30 20:18:57 +0200
commitccc34fa5ecea32517b72ebc01aca8f02295105fe (patch)
treec987f03fbdc76d0f264ed7d716ca9b046738fdb3 /pcilib
parent8da61292f595c5e700a4fef981b0e0d07910b4b2 (diff)
downloadpcitool-ccc34fa5ecea32517b72ebc01aca8f02295105fe.tar.gz
pcitool-ccc34fa5ecea32517b72ebc01aca8f02295105fe.tar.bz2
pcitool-ccc34fa5ecea32517b72ebc01aca8f02295105fe.tar.xz
pcitool-ccc34fa5ecea32517b72ebc01aca8f02295105fe.zip
Add code to debug missing events while recording
Diffstat (limited to 'pcilib')
-rw-r--r--pcilib/debug.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/pcilib/debug.h b/pcilib/debug.h
index f9134be..b7c547f 100644
--- a/pcilib/debug.h
+++ b/pcilib/debug.h
@@ -5,6 +5,7 @@
#ifdef PCILIB_DEBUG
# define PCILIB_DEBUG_DMA
+# define PCILIB_DEBUG_MISSING_EVENTS
#endif /* PCILIB_DEBUG */
@@ -14,6 +15,13 @@
# define PCILIB_DEBUG_DMA_CALL(function, ...)
#endif /* PCILIB_DEBUG_DMA */
+#ifdef PCILIB_DEBUG_MISSING_EVENTS
+# define PCILIB_DEBUG_MISSING_EVENTS_CALL(function, ...) pcilib_debug_message (#function, __FILE__, __LINE__, __VA_ARGS__)
+#else /* PCILIB_DEBUG_MISSING_EVENTS */
+# define PCILIB_DEBUG_MISSING_EVENTS_CALL(function, ...)
+#endif /* PCILIB_DEBUG_MISSING_EVENTS */
+
+
#define pcilib_debug(function, ...) \
PCILIB_DEBUG_##function##_CALL(PCILIB_DEBUG_##function, __VA_ARGS__)