Trace: Add DPRINTFS macro that takes parameter to call name() for trace printing.
authorAli Saidi <saidi@eecs.umich.edu>
Fri, 23 Jan 2009 22:19:48 +0000 (17:19 -0500)
committerAli Saidi <saidi@eecs.umich.edu>
Fri, 23 Jan 2009 22:19:48 +0000 (17:19 -0500)
src/base/trace.hh

index 72d7ba6057fd4e32343f863e44fd556d30c6de8f..fa24e9c4875e7cc06aab0d6e3108ef0a8655e2a2 100644 (file)
@@ -97,6 +97,12 @@ inline const std::string &name() { return Trace::DefaultName; }
         Trace::dprintf(curTick, name(), __VA_ARGS__);           \
 } while (0)
 
+#define DPRINTFS(x,s, ...) do {                                    \
+    if (DTRACE(x))                                              \
+        Trace::dprintf(curTick, s->name(), __VA_ARGS__);           \
+} while (0)
+
+
 #define DPRINTFR(x, ...) do {                                   \
     if (DTRACE(x))                                              \
         Trace::dprintf((Tick)-1, std::string(), __VA_ARGS__);   \
@@ -119,6 +125,7 @@ inline const std::string &name() { return Trace::DefaultName; }
 #define DTRACE(x) (false)
 #define DDUMP(x, data, count) do {} while (0)
 #define DPRINTF(x, ...) do {} while (0)
+#define DPRINTFS(x, ...) do {} while (0)
 #define DPRINTFR(...) do {} while (0)
 #define DDUMPN(data, count) do {} while (0)
 #define DPRINTFN(...) do {} while (0)