1 Star 0 Fork 0

lizhibiao/thread_pool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test.c 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
lzb 提交于 2021-09-07 17:12 . 线程池实现
#include "threadpool.h"
#include <stdio.h>
// void taskfunc(void *arg)
// {
// int num = *(int *)arg;
// printf("num = %d, tip = %ld\n",num, pthread_self());
// // sleep(1);
// }
// int main (void)
// {
// // 创建出一个线程池
// Threadpool *pool = create_threadpool(4,10,100);
// // 添加任务
// for(int i = 0; i < 50; i++)
// {
// int *num = (int *)malloc(sizeof(int));
// *num = i + 100;
// ThreadpoolAdd(pool, taskfunc, num);
// }
// sleep(30);
// ThreadPoolDestroy(pool);
// // printf("asaa\n");
// printf("asaa\n");
// return 0;
// }
void taskFunc(void* arg)
{
int num = *(int*)arg;
printf("thread %ld is working, number = %d\n",
pthread_self(), num);
sleep(1);
}
int main()
{
// 创建线程池
Threadpool* pool = create_threadpool(3, 10, 100);
for (int i = 0; i < 100; ++i)
{
int* num = (int*)malloc(sizeof(int));
*num = i + 100;
ThreadpoolAdd(pool, taskFunc, num);
}
sleep(30);
ThreadPoolDestroy(pool);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/lizhibiao-b/thread_pool.git
git@gitee.com:lizhibiao-b/thread_pool.git
lizhibiao-b
thread_pool
thread_pool
master

搜索帮助