加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
makeworker.c 531 Bytes
一键复制 编辑 原始数据 按行查看 历史
SpaceX_zhao 提交于 2023-05-17 23:23 . alopex midify
#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;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化