summaryrefslogtreecommitdiff
path: root/src/thread/pthread_setcanceltype.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_setcanceltype.c')
-rw-r--r--src/thread/pthread_setcanceltype.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/thread/pthread_setcanceltype.c b/src/thread/pthread_setcanceltype.c
new file mode 100644
index 00000000..c73db22f
--- /dev/null
+++ b/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;
+}