svn commit: r204187 - user/kmacy/releng_8_fcs_buf_xen/sys/sys

Kip Macy kmacy at FreeBSD.org
Mon Feb 22 04:43:04 UTC 2010


Author: kmacy
Date: Mon Feb 22 04:43:03 2010
New Revision: 204187
URL: http://svn.freebsd.org/changeset/base/204187

Log:
  don't enable queue debugging by default

Modified:
  user/kmacy/releng_8_fcs_buf_xen/sys/sys/queue.h

Modified: user/kmacy/releng_8_fcs_buf_xen/sys/sys/queue.h
==============================================================================
--- user/kmacy/releng_8_fcs_buf_xen/sys/sys/queue.h	Mon Feb 22 01:48:38 2010	(r204186)
+++ user/kmacy/releng_8_fcs_buf_xen/sys/sys/queue.h	Mon Feb 22 04:43:03 2010	(r204187)
@@ -35,6 +35,11 @@
 
 #include <sys/cdefs.h>
 
+#if 0
+#ifdef _KERNEL
+#define QUEUE_MACRO_DEBUG
+#endif
+#endif
 /*
  * This file defines four types of data structures: singly-linked lists,
  * singly-linked tail queues, lists and tail queues.


More information about the svn-src-user mailing list