1 Star 8 Fork 5

SSZL博客/webSocket_Libevent_ThreadPool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_thpool.c 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
SSZL 提交于 2018-10-01 15:47 . 线程池测试
/*************************************************************************
# > File Name: test_thpool.c
# > Author: SSZL
# > 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;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sszl_blog/webSocket_Libevent_ThreadPool.git
[email protected]:sszl_blog/webSocket_Libevent_ThreadPool.git
sszl_blog
webSocket_Libevent_ThreadPool
webSocket_Libevent_ThreadPool
master

搜索帮助