aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flthr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/source/flthr.cpp')
-rw-r--r--externals/grill/flext/source/flthr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/externals/grill/flext/source/flthr.cpp b/externals/grill/flext/source/flthr.cpp
index 598618f1..0ca03f38 100644
--- a/externals/grill/flext/source/flthr.cpp
+++ b/externals/grill/flext/source/flthr.cpp
@@ -543,9 +543,9 @@ bool flext::ThrCond::TimedWait(double ftime)
bool flext::ThrCond::Signal()
{
- Lock();
+// Lock();
bool ret = pthread_cond_signal(&cond) == 0;
- Unlock();
+// Unlock();
return ret;
}
#endif