摘要: <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);// 阅读全文
posted @ 2013-01-23 19:48 .小武. 阅读(9011) 评论(0) 推荐(1) 编辑