1ff00ad3016e43a685c3e9a196f85cdb3701b739
[musl] / src / thread / pthread_cancel.c
1 #include "pthread_impl.h"
2
3 int pthread_cancel(pthread_t t)
4 {
5         t->cancel = 1;
6         return pthread_kill(t, SIGCANCEL);
7 }