1 Star 0 Fork 26

xugangbbs/threadpool

forked from niukey/threadpool 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
thread_t.h 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
akzi 提交于 2015-01-22 13:33 . add threadpool files
#pragma once
#include "stddef.hpp"
#include "task_t.hpp"
class thread_t
{
public:
typedef std::function<bool(task_ptr_t &)> pull_task_fun_t;
typedef std::function<void(uint32_t)> exit_fun_t;
typedef std::lock_guard<std::mutex> lock_guard_t;
typedef std::unique_lock<std::mutex> unique_lock_t;
enum {suspend, runing, stoping};
thread_t(uint32_t tid_, pull_task_fun_t &fun_, exit_fun_t exit_fun_);
~thread_t(void);
void set_idle_timeout(uint32_t idle_timeout_);
int get_status();
void run(task_ptr_t &task);
void stop();
void start();
uint32_t get_tid();
private:
void detach();
void loop();
void wake_up();
void to_sleep();
void to_work();
void wait_timeout();
std::shared_ptr<std::thread> thread;
std::mutex mutex;
std::mutex cond_var_mutex;
std::condition_variable cond_var;
task_ptr_t task;
std::atomic_int status;
uint32_t idle_timeout;
pull_task_fun_t pull_task;
exit_fun_t exit_fun;
uint32_t tid;
std::atomic_bool b_run;
};
typedef std::shared_ptr<thread_t> thread_ptr_t;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/xugangbbs/threadpool.git
git@gitee.com:xugangbbs/threadpool.git
xugangbbs
threadpool
threadpool
master

搜索帮助