ccls/src/work_thread.cc

18 lines
426 B
C++
Raw Normal View History

2017-09-13 03:35:27 +00:00
#include "work_thread.h"
#include "platform.h"
// static
2017-09-22 01:14:57 +00:00
void WorkThread::StartThread(const std::string& thread_name,
const std::function<Result()>& entry_point) {
2017-09-13 03:35:27 +00:00
new std::thread([thread_name, entry_point]() {
SetCurrentThreadName(thread_name);
// Main loop.
while (true) {
Result result = entry_point();
if (result == Result::ExitThread)
break;
}
});
}