qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 03/31] hw/ppc.c: LOG_TB macro


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH 03/31] hw/ppc.c: LOG_TB macro
Date: Fri, 12 Dec 2008 13:08:42 -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>
---
 hw/ppc.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/hw/ppc.c b/hw/ppc.c
index 01cb44c..837dc6d 100644
--- a/hw/ppc.c
+++ b/hw/ppc.c
@@ -41,6 +41,15 @@
 #endif
 
 
+#ifdef PPC_DEBUG_TB
+#  define LOG_TB(...) do {               \
+     if (loglevel)                       \
+       fprintf(logfile, ## __VA_ARGS__); \
+   } while (0)
+#else
+#  define LOG_TB(...) do { } while (0)
+#endif
+
 static void cpu_ppc_tb_stop (CPUState *env);
 static void cpu_ppc_tb_start (CPUState *env);
 
-- 
1.5.5.GIT





reply via email to

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