summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/rts/OSThreads.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/includes/rts/OSThreads.h b/includes/rts/OSThreads.h
index b711036b17..08d90de06e 100644
--- a/includes/rts/OSThreads.h
+++ b/includes/rts/OSThreads.h
@@ -173,9 +173,10 @@ extern void joinOSThread ( OSThreadId id );
//
extern void initCondition ( Condition* pCond );
extern void closeCondition ( Condition* pCond );
-extern bool broadcastCondition ( Condition* pCond );
-extern bool signalCondition ( Condition* pCond );
-extern bool waitCondition ( Condition* pCond, Mutex* pMut );
+extern void broadcastCondition ( Condition* pCond );
+extern void signalCondition ( Condition* pCond );
+extern void waitCondition ( Condition* pCond, Mutex* pMut );
+// Returns false on timeout, true otherwise.
extern bool timedWaitCondition ( Condition* pCond, Mutex* pMut, Time timeout);
//