pthread_detach(pthread_self())

pthread_detach(pthread_self())

将状态改为unjoinable状态,确保资源的释放。其实简单的说就是在线程函数头加上 pthread_detach(pthread_self())的话,线程状态改变,在函数尾部直接 pthread_exit线程就会自动退出。省去了给线程擦屁股的麻烦

 

你可能感兴趣的:(pthread_detach(pthread_self()))