mymangosd/third_party/f8/f8/threadpool.cc
aozhiwei fb6dd34caa 1
2024-12-24 18:41:50 +08:00

33 lines
371 B
C++

#include <f8/internal/pch.h>
#include <f8/threadpool.h>
namespace f8
{
class ThreadPool::WorkerThread
{
};
void ThreadPool::Init(int thread_num, std::function<void(Context*)> cb)
{
}
void ThreadPool::UnInit()
{
}
void ThreadPool::PostMsg(int key, list_head* node)
{
}
void ThreadPool::Start()
{
}
}