summaryrefslogtreecommitdiffstats
path: root/osdep/threads.h
blob: 7c9f04132092f54f8c98936d9a2b279c434dfdd0 (plain)
1
2
3
4
5
6
7
8
9
#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