2013-11-17 15:42:57 +00:00
|
|
|
#ifndef MP_OSDEP_THREADS_H_
|
|
|
|
#define MP_OSDEP_THREADS_H_
|
|
|
|
|
|
|
|
#include <pthread.h>
|
|
|
|
|
2014-01-31 18:50:56 +00:00
|
|
|
struct timespec mpthread_get_deadline(double timeout);
|
|
|
|
|
2014-04-23 18:56:25 +00:00
|
|
|
int mpthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
|
|
|
|
double timeout);
|
2013-11-17 15:42:57 +00:00
|
|
|
|
2014-01-31 18:50:25 +00:00
|
|
|
int mpthread_mutex_init_recursive(pthread_mutex_t *mutex);
|
|
|
|
|
2013-11-17 15:42:57 +00:00
|
|
|
#endif
|