代码拉取完成,页面将自动刷新
#include "threadPool.h"
int makeWorker(threadPool_t *pthreadPool){
// 记录子线程的tid
pthreadPool->tidArr = (pthread_t *)calloc(pthreadPool->workerNum,sizeof(pthread_t));
ERROR_CHECK(pthreadPool->tidArr, NULL, "callo in makeWorker");
// 创建workerNum个子线程
for(int i = 0; i < pthreadPool->workerNum; i++){
// tidArr接受子线程tid,调用threadFunc,将pthreadPool传入threadFunc
pthread_create(&pthreadPool->tidArr[i],NULL,threadFunc,pthreadPool);
}
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。