summaryrefslogtreecommitdiff
path: root/src/thread/pthread_setcanceltype.c
blob: c73db22f3b614cf486725876ee9a2ee61c084590 (plain) (blame)
1
2
3
4
5
6
7
8
9
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;
}