33 lines
371 B
C++
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()
|
|
{
|
|
}
|
|
|
|
}
|