2 Star 1 Fork 1

lindx/线程池

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.c 456 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <unistd.h>
#include "threadpool.h"
void *my_print(void *arg)
{
int *i = (int *)arg;
printf("thread_id:%d param:%d\n", GET_THREAD_ID, *i);
sleep(1);
free(i);
return NULL;
}
int main()
{
threadpool_t *pool = threadpool_create(3);
for (int i = 0; i < 10; ++i)
{
int *te = malloc(sizeof(int));
*te = i;
threadpool_add_task(pool, my_print, te);
}
//sleep(15);
threadpool_destroy(pool);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/lindx-code/threadpool.git
[email protected]:lindx-code/threadpool.git
lindx-code
threadpool
线程池
master

搜索帮助