summaryrefslogtreecommitdiffstats
path: root/osdep/threads.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-05-11 23:44:36 +0200
committerDiogo Franco (Kovensky) <diogomfranco@gmail.com>2015-05-15 10:30:15 +0900
commit37ad3e79dd03cecc4be3a7341fdf69f96873d2eb (patch)
treeae9e6ec463c69918c334c637901427a94013c017 /osdep/threads.h
parent328d0c7fc326abce5fc1783e74cdd082c87d4986 (diff)
downloadmpv-37ad3e79dd03cecc4be3a7341fdf69f96873d2eb.tar.bz2
mpv-37ad3e79dd03cecc4be3a7341fdf69f96873d2eb.tar.xz
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.) (cherry picked from commit 92b9d75d7256be71d8c8b18438af9494b78f0e96)
Diffstat (limited to 'osdep/threads.h')
-rw-r--r--osdep/threads.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/osdep/threads.h b/osdep/threads.h
index 2277fa65a1..8633618009 100644
--- a/osdep/threads.h
+++ b/osdep/threads.h
@@ -4,15 +4,6 @@
#include <pthread.h>
#include <inttypes.h>
-// Call pthread_cond_timedwait() with an absolute timeout using the same
-// time source/unit as mp_time_us() (microseconds).
-int mpthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
- int64_t abstime);
-
-// Wait by a relative amount of time in seconds.
-int mpthread_cond_timedwait_rel(pthread_cond_t *cond, pthread_mutex_t *mutex,
- double seconds);
-
// Helper to reduce boiler plate.
int mpthread_mutex_init_recursive(pthread_mutex_t *mutex);