qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 05/31] vl.c: LOG_IOPORT macro


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH 05/31] vl.c: LOG_IOPORT macro
Date: Fri, 12 Dec 2008 13:08:44 -0200

This macro will avoid some #ifdefs in the code and create a single point
where the logging call can be changed in the future.

Signed-off-by: Eduardo Habkost <address@hidden>
---
 vl.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/vl.c b/vl.c
index c3a8d8f..a87c3b4 100644
--- a/vl.c
+++ b/vl.c
@@ -162,6 +162,16 @@
 //#define DEBUG_NET
 //#define DEBUG_SLIRP
 
+
+#ifdef DEBUG_IOPORT
+#  define LOG_IOPORT(...) do {           \
+     if (loglevel & CPU_LOG_IOPORT)      \
+       fprintf(logfile, ## __VA_ARGS__); \
+   } while (0)
+#else
+#  define LOG_IOPORT(...) do { } while (0)
+#endif
+
 #ifdef TARGET_PPC
 #define DEFAULT_RAM_SIZE 144
 #else
-- 
1.5.5.GIT





reply via email to

[Prev in Thread] Current Thread [Next in Thread]