about summary refs log tree commit diff stats
path: root/xombrero.c
diff options
context:
space:
mode:
authorJosh Rickmar <jrick@devio.us>2012-07-11 14:37:07 -0400
committerJosh Rickmar <jrick@devio.us>2012-07-11 14:37:07 -0400
commit4c05ef647d9a2038a4ba63ad6e3558bba996e4e9 (patch)
treeb94d52b5c6917e9411374c31bdf5ab0d41decd6c /xombrero.c
parent1b1ab5fa1804dacc43140fc95f85452cefdb5db6 (diff)
downloadxombrero-4c05ef647d9a2038a4ba63ad6e3558bba996e4e9.tar.gz
Use a DNPRINTF debugging macro for mutex warnings instead of show_oops.
Diffstat (limited to 'xombrero.c')
-rw-r--r--xombrero.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xombrero.c b/xombrero.c
index 5a1c545..b5a61e8 100644
--- a/xombrero.c
+++ b/xombrero.c
@@ -8199,7 +8199,7 @@ mtx_lock(void)
 
 complain:
 	if (mtx_complain == 0) {
-		show_oops(NULL, "buggy mutex implementation detected(%s), "
+		DNPRINTF(XT_D_MTX, "buggy mutex implementation detected(%s), "
 		    "work around implemented", s);
 		mtx_complain = 1;
 	}
@@ -8223,7 +8223,7 @@ mtx_unlock(void)
 
 complain:
 	if (mtx_complain == 0) {
-		show_oops(NULL, "buggy mutex implementation detected(%s), "
+		DNPRINTF(XT_D_MTX, "buggy mutex implementation detected(%s), "
 		    "work around implemented", s);
 		mtx_complain = 1;
 	}