musl-tcc/src/thread/pthread_setcanceltype.c

12 lines
253 B
C

#include "pthread_impl.h"
int pthread_setcanceltype(int new, int *old)
{
struct pthread *self = __pthread_self();
if (new > 1U) return EINVAL;
if (old) *old = self->cancelasync;
self->cancelasync = new;
if (new) pthread_testcancel();
return 0;
}