summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/thread/cnd_timedwait.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/thread/cnd_timedwait.c')
-rw-r--r--libc-top-half/musl/src/thread/cnd_timedwait.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/thread/cnd_timedwait.c b/libc-top-half/musl/src/thread/cnd_timedwait.c
new file mode 100644
index 0000000..2802af5
--- /dev/null
+++ b/libc-top-half/musl/src/thread/cnd_timedwait.c
@@ -0,0 +1,14 @@
+#include <threads.h>
+#include <pthread.h>
+#include <errno.h>
+
+int cnd_timedwait(cnd_t *restrict c, mtx_t *restrict m, const struct timespec *restrict ts)
+{
+ int ret = __pthread_cond_timedwait((pthread_cond_t *)c, (pthread_mutex_t *)m, ts);
+ switch (ret) {
+ /* May also return EINVAL or EPERM. */
+ default: return thrd_error;
+ case 0: return thrd_success;
+ case ETIMEDOUT: return thrd_timedout;
+ }
+}