Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 199 Bytes

pthread_exit.md

File metadata and controls

11 lines (10 loc) · 199 Bytes

结束一个线程 ##函数原型

#include <pthread.h>

void pthread_exit(void *retval);

##参数 retval用来保存线程退出状态 ##返回值 为空。因为该函数永远成功