blob: ce2fff073569085862ae5825a01dc480e16a7659 (
plain) (
tree)
|
|
#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;
}
|