diff options
author | wm4 <wm4@nowhere> | 2014-04-23 20:56:25 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-04-23 21:16:52 +0200 |
commit | cd10af4db6c30d25f88095eab2ce24df6a6c92df (patch) | |
tree | a244ad5e3d3a462fa81d305f0a8d0c4f6b482c89 /osdep/threads.h | |
parent | 80ff94131b477ad9156f1c68da7b8588544fee33 (diff) | |
download | mpv-cd10af4db6c30d25f88095eab2ce24df6a6c92df.tar.bz2 mpv-cd10af4db6c30d25f88095eab2ce24df6a6c92df.tar.xz |
threads: fix function name
Closer to the corresponding standard function pthread_cond_timedwait.
Diffstat (limited to 'osdep/threads.h')
-rw-r--r-- | osdep/threads.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/threads.h b/osdep/threads.h index 3d060009cb..02f6ac1489 100644 --- a/osdep/threads.h +++ b/osdep/threads.h @@ -5,8 +5,8 @@ struct timespec mpthread_get_deadline(double timeout); -int mpthread_cond_timed_wait(pthread_cond_t *cond, pthread_mutex_t *mutex, - double timeout); +int mpthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, + double timeout); int mpthread_mutex_init_recursive(pthread_mutex_t *mutex); |