summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/Event.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-10-06 09:24:51 +0200
committerMattes D <github@xoft.cz>2014-10-06 09:24:51 +0200
commit89713e23e4d7a341700d83f078142a4007b12d38 (patch)
treeba3db4fdf32f730759b6bb4caea0c63b818475fb /src/OSSupport/Event.h
parentFixed a missed value. (diff)
parentUpdate CMakeLists.txt (diff)
downloadcuberite-89713e23e4d7a341700d83f078142a4007b12d38.tar
cuberite-89713e23e4d7a341700d83f078142a4007b12d38.tar.gz
cuberite-89713e23e4d7a341700d83f078142a4007b12d38.tar.bz2
cuberite-89713e23e4d7a341700d83f078142a4007b12d38.tar.lz
cuberite-89713e23e4d7a341700d83f078142a4007b12d38.tar.xz
cuberite-89713e23e4d7a341700d83f078142a4007b12d38.tar.zst
cuberite-89713e23e4d7a341700d83f078142a4007b12d38.zip
Diffstat (limited to '')
-rw-r--r--src/OSSupport/Event.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/OSSupport/Event.h b/src/OSSupport/Event.h
index 71f418c0c..e2fa65a05 100644
--- a/src/OSSupport/Event.h
+++ b/src/OSSupport/Event.h
@@ -24,6 +24,10 @@ public:
void Wait(void);
void Set (void);
+
+ /** Waits for the event until either it is signalled, or the (relative) timeout is passed.
+ Returns true if the event was signalled, false if the timeout was hit or there was an error. */
+ bool Wait(int a_TimeoutMSec);
private: