From 92b9d75d7256be71d8c8b18438af9494b78f0e96 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 11 May 2015 23:44:36 +0200 Subject: threads: use utility+POSIX functions instead of weird wrappers There is not much of a reason to have these wrappers around. Use POSIX standard functions directly, and use a separate utility function to take care of the timespec calculations. (Course POSIX for using this weird format for time values.) --- misc/dispatch.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'misc') diff --git a/misc/dispatch.c b/misc/dispatch.c index 6391caa063..502742b835 100644 --- a/misc/dispatch.c +++ b/misc/dispatch.c @@ -206,7 +206,8 @@ void mp_dispatch_queue_process(struct mp_dispatch_queue *queue, double timeout) } } else { if (wait > 0) { - mpthread_cond_timedwait(&queue->cond, &queue->lock, wait); + struct timespec ts = mp_time_us_to_timespec(wait); + pthread_cond_timedwait(&queue->cond, &queue->lock, &ts); } else { pthread_cond_wait(&queue->cond, &queue->lock); } -- cgit v1.2.3