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_setcanceltype.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 05/musl-0.6.0/src/thread/pthread_setcanceltype.c (limited to '05/musl-0.6.0/src/thread/pthread_setcanceltype.c') diff --git a/05/musl-0.6.0/src/thread/pthread_setcanceltype.c b/05/musl-0.6.0/src/thread/pthread_setcanceltype.c new file mode 100644 index 0000000..c73db22 --- /dev/null +++ b/05/musl-0.6.0/src/thread/pthread_setcanceltype.c @@ -0,0 +1,10 @@ +#include "pthread_impl.h" + +int pthread_setcanceltype(int new, int *old) +{ + struct pthread *self = pthread_self(); + if (old) *old = self->cancelasync; + if ((unsigned)new > 1) return EINVAL; + self->cancelasync = new; + return 0; +} -- cgit v1.2.3