summaryrefslogtreecommitdiffstats
path: root/osdep/threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep/threads.c')
-rw-r--r--osdep/threads.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/threads.c b/osdep/threads.c
index 6b19f83f1d..84a65feddd 100644
--- a/osdep/threads.c
+++ b/osdep/threads.c
@@ -62,8 +62,8 @@ struct timespec mpthread_get_deadline(double timeout)
}
// Call pthread_cond_timedwait() with a relative timeout in seconds
-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)
{
struct timespec ts = mpthread_get_deadline(timeout);
return pthread_cond_timedwait(cond, mutex, &ts);