mirror of
https://github.com/mpv-player/mpv
synced 2024-12-19 13:21:13 +00:00
b78d11d328
Also split the function itself into 3.
10 lines
208 B
C
10 lines
208 B
C
#ifndef MP_OSDEP_THREADS_H_
|
|
#define MP_OSDEP_THREADS_H_
|
|
|
|
#include <pthread.h>
|
|
|
|
int mpthread_cond_timed_wait(pthread_cond_t *cond, pthread_mutex_t *mutex,
|
|
double timeout);
|
|
|
|
#endif
|