From c5c43c4541f4434b4c5a5bc5914d6bc08f75ea94 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 17 Apr 2013 01:33:07 +0200 Subject: thread/Cond: add method timed_wait() --- src/thread/PosixCond.hxx | 13 +++++++++++++ src/thread/WindowsCond.hxx | 8 ++++++-- 2 files changed, 19 insertions(+), 2 deletions(-) (limited to 'src/thread') diff --git a/src/thread/PosixCond.hxx b/src/thread/PosixCond.hxx index acdc05edc..6f98d3ad0 100644 --- a/src/thread/PosixCond.hxx +++ b/src/thread/PosixCond.hxx @@ -32,6 +32,8 @@ #include "PosixMutex.hxx" +#include + /** * Low-level wrapper for a pthread_cond_t. */ @@ -55,6 +57,17 @@ public: void wait(PosixMutex &mutex) { pthread_cond_wait(&cond, &mutex.mutex); } + + bool timed_wait(PosixMutex &mutex, unsigned timeout_ms) { + struct timeval now; + gettimeofday(&now, nullptr); + + struct timespec ts; + ts.tv_sec = now.tv_sec + timeout_ms / 1000; + ts.tv_nsec = (now.tv_usec + (timeout_ms % 1000) * 1000) * 1000; + + return pthread_cond_timedwait(&cond, &mutex.mutex, &ts) == 0; + } }; #endif diff --git a/src/thread/WindowsCond.hxx b/src/thread/WindowsCond.hxx index f4e909c72..c05bc05b2 100644 --- a/src/thread/WindowsCond.hxx +++ b/src/thread/WindowsCond.hxx @@ -54,9 +54,13 @@ public: WakeAllConditionVariable(&cond); } + bool timed_wait(CriticalSection &mutex, DWORD timeout_ms) { + return SleepConditionVariableCS(&cond, &mutex.critical_section, + timeout_ms); + } + void wait(CriticalSection &mutex) { - SleepConditionVariableCS(&cond, &mutex.critical_section, - INFINITE); + timed_wait(mutex, INFINITE); } }; -- cgit v1.2.3