代码拉取完成,页面将自动刷新
/*************************************************************************
# > File Name: test_thpool.c
# > Author: SSZL
# > Mail: [email protected]
# > Blog: sszlbg.cn
# > Created Time: 2018-09-17 15:09:35
# > Revise Time: 2018-10-01 15:31:22
************************************************************************/
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<string.h>
#include"include/evbase_threadpool.h"
#include"include/Threadpool.h"
/* 线程池中的线程,模拟处理业务 */
void *process(void *arg)
{
printf("thread 0x%x working on task %d\n ",(unsigned int)pthread_self(),*(int *)arg);
sleep(1);
printf("task %d is end\n",*(int *)arg);
return NULL;
}
int main(void)
{
threadpool_t *thp = threadpool_create(10);
/* evbase_threadpool_t *ev_thpool = evbase_threadpool_new(1000, 10); */
/* threadpool_t *thp = evbase_threadpool_get_threadpool(ev_thpool) ;*/
printf("pool inited\r\n");
int num[2000], i;
for (i = 0; i < 2000; i++) {
num[i]=i;
printf("add task %d\n",i);
threadpool_add(thp, process, (void*)&num[i]); /* 向线程池中添加任务 */
}
while(1); /* 等子线程完成任务 */
threadpool_destroy(thp);
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。