Commit a4202165 authored by Max Kellermann's avatar Max Kellermann

thread/Cond: make the integer-based timed_wait() overload private

Make sure this deprecated API is not used.
parent 2498a2b0
......@@ -74,6 +74,7 @@ public:
pthread_cond_wait(&cond, &mutex.mutex);
}
private:
bool timed_wait(PosixMutex &mutex, unsigned timeout_ms) {
struct timeval now;
gettimeofday(&now, nullptr);
......@@ -90,6 +91,7 @@ public:
return pthread_cond_timedwait(&cond, &mutex.mutex, &ts) == 0;
}
public:
bool timed_wait(PosixMutex &mutex,
std::chrono::steady_clock::duration timeout) {
auto timeout_ms = std::chrono::duration_cast<std::chrono::milliseconds>(timeout).count();
......
......@@ -56,11 +56,13 @@ public:
WakeAllConditionVariable(&cond);
}
private:
bool timed_wait(CriticalSection &mutex, DWORD timeout_ms) {
return SleepConditionVariableCS(&cond, &mutex.critical_section,
timeout_ms);
}
public:
bool timed_wait(CriticalSection &mutex,
std::chrono::steady_clock::duration timeout) {
auto timeout_ms = std::chrono::duration_cast<std::chrono::milliseconds>(timeout).count();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment