diff options
author | bunnei <bunneidev@gmail.com> | 2020-01-23 20:18:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 20:18:47 -0500 |
commit | deb97f6a8e48c17f8e16efadc24872a860d529a7 (patch) | |
tree | 79ca6164fcb03783bc19f1ec557cacdf0b3fc539 /src/common/thread.h | |
parent | a167da4278df6d864a8990f846cf3ede1158f3db (diff) | |
parent | d01eb12f369eedae704c0e7ce0611f360302475b (diff) |
Merge pull request #2800 from FearlessTobi/port-4049
Port citra-emu/citra#4049: "Input: UDP Client to provide motion and touch controls"
Diffstat (limited to 'src/common/thread.h')
-rw-r--r-- | src/common/thread.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/common/thread.h b/src/common/thread.h index 0cfd98be6..2fc071685 100644 --- a/src/common/thread.h +++ b/src/common/thread.h @@ -28,6 +28,15 @@ public: is_set = false; } + template <class Duration> + bool WaitFor(const std::chrono::duration<Duration>& time) { + std::unique_lock lk{mutex}; + if (!condvar.wait_for(lk, time, [this] { return is_set; })) + return false; + is_set = false; + return true; + } + template <class Clock, class Duration> bool WaitUntil(const std::chrono::time_point<Clock, Duration>& time) { std::unique_lock lk{mutex}; |