结束一个线程
#include <pthread.h>void pthread_exit(void *retval);
#include <pthread.h>
void pthread_exit(void *retval);
retval用来保存线程退出状态
为空。因为该函数永远成功。