merge hv v6, rework trace methods
[goodguy/history.git] / cinelerra-5.1 / guicast / mutex.h
index f510f0ddc9ef43eb445db5596c44a2d8798a7fc3..76a93584fcba16703a3d945c9ffe6f5bb0d45019 100644 (file)
@@ -24,8 +24,9 @@
 
 #include <pthread.h>
 #include <stdio.h>
+#include "bctrace.inc"
 
-class Mutex
+class Mutex : public trace_info
 {
 public:
        Mutex(const char *title = 0, int recursive = 0);
@@ -61,5 +62,4 @@ public:
        ~mLock() { mutex.unlock(); }
 };
 
-
 #endif