diff options
Diffstat (limited to 'src/thread/pthread_setcancelstate.c')
| -rw-r--r-- | src/thread/pthread_setcancelstate.c | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/src/thread/pthread_setcancelstate.c b/src/thread/pthread_setcancelstate.c new file mode 100644 index 00000000..23c38851 --- /dev/null +++ b/src/thread/pthread_setcancelstate.c @@ -0,0 +1,10 @@ +#include "pthread_impl.h" + +int pthread_setcancelstate(int new, int *old) +{ +	struct pthread *self = pthread_self(); +	if (old) *old = self->canceldisable; +	if ((unsigned)new > 1) return EINVAL; +	self->canceldisable = new; +	return 0; +} | 
