aboutsummaryrefslogtreecommitdiff
path: root/src/threading.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/threading.cpp')
-rw-r--r--src/threading.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/threading.cpp b/src/threading.cpp
index 61be371c3..3ddc05b0a 100644
--- a/src/threading.cpp
+++ b/src/threading.cpp
@@ -276,12 +276,12 @@ gb_internal void semaphore_wait(Semaphore *s) {
struct BlockingMutex {
#if defined(HAS_VALGRIND)
- BlockingMutex() {
- VALGRIND_HG_MUTEX_INIT_POST(this, 0);
- }
- ~BlockingMutex() {
- VALGRIND_HG_MUTEX_DESTROY_PRE(this);
- }
+ // BlockingMutex() {
+ // VALGRIND_HG_MUTEX_INIT_POST(this, 0);
+ // }
+ // ~BlockingMutex() {
+ // VALGRIND_HG_MUTEX_DESTROY_PRE(this);
+ // }
#endif
i32 state_;