1 Star 0 Fork 26

wendy.liu/threadpool

forked from niukey/threadpool 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
task_t.hpp 345 Bytes
一键复制 编辑 原始数据 按行查看 历史
akzi 提交于 2015-01-22 13:33 . add threadpool files
#pragma once
#include "stddef.hpp"
class task_t
{
public:
typedef void(task_fun_t)(void*);
task_t( task_fun_t *fun_, void *arg_)
:task_fun(fun_),
arg(arg_)
{
}
~task_t(void)
{
}
void do_work()
{
if (task_fun)
{
task_fun(arg);
}
}
private:
void *arg;
task_fun_t *task_fun;
};
typedef std::shared_ptr<task_t> task_ptr_t;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wendy.liu/threadpool.git
git@gitee.com:wendy.liu/threadpool.git
wendy.liu
threadpool
threadpool
master

搜索帮助