代码拉取完成,页面将自动刷新
#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;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。