From 9bc8a11afeed3569736b89754012e3ca22ee10f6 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 20 Feb 2022 13:18:21 -0800 Subject: conclusion --- 05/musl-0.6.0/src/thread/pthread_mutexattr_settype.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 05/musl-0.6.0/src/thread/pthread_mutexattr_settype.c (limited to '05/musl-0.6.0/src/thread/pthread_mutexattr_settype.c') diff --git a/05/musl-0.6.0/src/thread/pthread_mutexattr_settype.c b/05/musl-0.6.0/src/thread/pthread_mutexattr_settype.c new file mode 100644 index 0000000..4e85950 --- /dev/null +++ b/05/musl-0.6.0/src/thread/pthread_mutexattr_settype.c @@ -0,0 +1,8 @@ +#include "pthread_impl.h" + +int pthread_mutexattr_settype(pthread_mutexattr_t *a, int type) +{ + if ((unsigned)type > 2) return EINVAL; + *a = (*a & ~3) | type; + return 0; +} -- cgit v1.2.3