摘要:
<UNIX环境高级编程(第二版)> 线程学习P287-P297#include <pthread.h>//新建线程int pthread_create(pthread_t *restrict tidp, const pthread_attr_t *restrict attr, void *(*start_rtn)(void *), void *restrict arg);//线程终止void pthread_exit(void *rval_ptr);//线程自身主动退出int pthread_join(pthread_t tid, void **rval_ptr);// 阅读全文