1 #include <pthread.h> 2 3 #include <errno.h> 4 pthread_cancel(pthread_t t)5 int pthread_cancel(pthread_t t) { 6 return ENOSYS; 7 } 8