摘要: 1.线程的创建 int ret = pthread_create(&thdid,NULL,th_func,void *p); th_func 执行程序任务 创建成功返回 0 thid >pthread_t 是线程号,在这里做传出参数。 p 是th_func 的参数,使用时需要强制转换为void * 阅读全文
posted @ 2016-07-10 00:13 Jarvis.cpp 阅读(211) 评论(0) 推荐(0) 编辑