aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/config.h
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-08-03 16:46:00 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-08-03 16:46:00 +0000
commite6f1414017442c676594b3eceaa4d355e2a8fae3 (patch)
tree404d02360ce449447d8b6602812276d91eb1a6ba /xen/include/xen/config.h
parent8721969492de414af30dff4e30bb09bdd65f3d7d (diff)
downloadxen-e6f1414017442c676594b3eceaa4d355e2a8fae3.tar.gz
xen-e6f1414017442c676594b3eceaa4d355e2a8fae3.tar.bz2
xen-e6f1414017442c676594b3eceaa4d355e2a8fae3.zip
bitkeeper revision 1.1132.1.1 (410fc148tLJQNH7768Degg248R1WlQ)
Add a 'verbose' compile option to Xen that gets us tracing without stress tests or assertions that come with the 'debug' option.
Diffstat (limited to 'xen/include/xen/config.h')
-rw-r--r--xen/include/xen/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/include/xen/config.h b/xen/include/xen/config.h
index fb0a7d391f..74d7c3b1b4 100644
--- a/xen/include/xen/config.h
+++ b/xen/include/xen/config.h
@@ -31,7 +31,7 @@
#define capable(_c) 0
-#ifndef NDEBUG
+#ifdef VERBOSE
#define DPRINTK(_f, _a...) printk("(file=%s, line=%d) " _f, \
__FILE__ , __LINE__ , ## _a )
#else