From 33fc453fd46e54410472a7bad7585e5d1821c0ec Mon Sep 17 00:00:00 2001 From: Douglas Wilson Date: Mon, 4 Jan 2021 09:46:58 +0000 Subject: rts: add timedWaitCondition --- includes/rts/OSThreads.h | 1 + 1 file changed, 1 insertion(+) (limited to 'includes') diff --git a/includes/rts/OSThreads.h b/includes/rts/OSThreads.h index 21b92950b2..ed9c0a3b5e 100644 --- a/includes/rts/OSThreads.h +++ b/includes/rts/OSThreads.h @@ -175,6 +175,7 @@ extern void closeCondition ( Condition* pCond ); extern bool broadcastCondition ( Condition* pCond ); extern bool signalCondition ( Condition* pCond ); extern bool waitCondition ( Condition* pCond, Mutex* pMut ); +extern bool timedWaitCondition ( Condition* pCond, Mutex* pMut, Time timeout); // // Mutexes -- cgit v1.2.1