musl-tcc/src/thread/pthread_setcanceltype.c

12 lines
253 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#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;
}