SVN commit 474296 by staikos:
make tracing work
M +6 -0 rwlock.cpp
--- trunk/extragear/graphics/kst/kst/rwlock.cpp #474295:474296
@@ -23,6 +23,12 @@
//#define LOCKTRACE
+#ifdef LOCKTRACE
+#include <stdio.h>
+#include <qthread.h>
+#endif
+
+
KstRWLock::KstRWLock()
: _sem(MAXREADERS), _writeLock(true), _writeRecursion(0) {
}