From cd10af4db6c30d25f88095eab2ce24df6a6c92df Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 23 Apr 2014 20:56:25 +0200 Subject: threads: fix function name Closer to the corresponding standard function pthread_cond_timedwait. --- osdep/threads.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'osdep/threads.h') 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); -- cgit v1.2.3