summaryrefslogtreecommitdiff
path: root/src/thread/pthread_condattr_setclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_condattr_setclock.c')
-rw-r--r--src/thread/pthread_condattr_setclock.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/thread/pthread_condattr_setclock.c b/src/thread/pthread_condattr_setclock.c
new file mode 100644
index 0000000..7112594
--- /dev/null
+++ b/src/thread/pthread_condattr_setclock.c
@@ -0,0 +1,9 @@
+#include "pthread_impl.h"
+
+int pthread_condattr_setclock(pthread_condattr_t *a, clockid_t clk)
+{
+ if (clk < 0 || clk-2U < 2) return EINVAL;
+ a->__attr &= 0x80000000;
+ a->__attr |= clk;
+ return 0;
+}