_pthread_exit
#define pthread_exit _pthread_exit
#define thr_exit(x) _pthread_exit(x)
_pthread_exit(PTHREAD_CANCELED);
_pthread_exit(curthread->start_routine(curthread->arg));
__strong_reference(_pthread_exit, pthread_exit);
STATIC_LIB_REQUIRE(_pthread_exit);