qemu-devel
[Top][All Lists]
Advanced

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

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


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH 03/13] hw/ppc.c: LOG_TB macro
Date: Wed, 10 Dec 2008 16:24:14 -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 44d2f48..53257a4 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]