diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2020-06-28 01:34:07 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 01:34:07 +1000 |
commit | 0ea4a8bcc4bca14bb7c65b248ed1899d2e7167cf (patch) | |
tree | a83acb1e779b98d31fa54389bae4be5669573a41 /src/common/thread.h | |
parent | 6205965df9682c3a52adbdcf260e7b24c02b24d4 (diff) | |
parent | 7b893c7963a57bf41f5dad7dd1709985971ce291 (diff) |
Merge pull request #3396 from FernandoS27/prometheus-1
Implement SpinLocks, Fibers and a Host Timer
Diffstat (limited to 'src/common/thread.h')
-rw-r--r-- | src/common/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/thread.h b/src/common/thread.h index 2fc0716855..127cc7e233 100644 --- a/src/common/thread.h +++ b/src/common/thread.h @@ -9,6 +9,7 @@ #include <cstddef> #include <mutex> #include <thread> +#include "common/common_types.h" namespace Common { @@ -28,8 +29,7 @@ public: is_set = false; } - template <class Duration> - bool WaitFor(const std::chrono::duration<Duration>& time) { + bool WaitFor(const std::chrono::nanoseconds& time) { std::unique_lock lk{mutex}; if (!condvar.wait_for(lk, time, [this] { return is_set; })) return false; |