加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.c 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
laozi2 提交于 2017-03-14 19:06 . empty commint
#include "ngx_common.h"
#include "ngx_thread.h"
#include "ngx_thread_pool.h"
#include "flog.h"
static void
ngx_thread_handler(void *data)
{
int v = *(int*)data;
LOG_INFO("ngx_thread_handler(), data %d, tid %d", v, ngx_log_tid);
}
int main(int argc, char* argv[])
{
//Flogconf logconf = DEFLOGCONF;
Flogconf logconf = {"/tmp/tmplog/main",LOGFILE_DEFMAXSIZE,L_LEVEL_MAX,0,1};
if (0 > LOG_INIT(logconf)) {
printf("LOG_INIT() failed\n");
return -1;
}
ngx_thread_pool_t* tp = ngx_thread_pool_config(3);
if ( NGX_OK != ngx_thread_pool_init_worker(tp) ) {
LOG_ERROR("ngx_thread_pool_init_worker() failed");
goto done;
}
ngx_thread_task_t task;
ngx_memzero(&task, sizeof(ngx_thread_task_t));
task.handler = ngx_thread_handler;
int data = 1;
task.ctx = (void *) &data;
if (ngx_thread_task_post(tp, &task) != NGX_OK) {
return;
}
sleep(1);
done:
ngx_thread_pool_exit_worker(tp);
LOG_EXIT;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化