ccls/src/work_thread.cc

12 lines
300 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,
std::function<void()> entry_point) {
2017-09-13 03:35:27 +00:00
new std::thread([thread_name, entry_point]() {
SetCurrentThreadName(thread_name);
entry_point();
2017-09-13 03:35:27 +00:00
});
}