MCPcopy Create free account
hub / github.com/a2flo/floor / thread_base

Method thread_base

src/threading/thread_base.cpp:27–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25using namespace std::literals;
26
27thread_base::thread_base(const std::string name) : thread_name(name) {
28 thread_obj = std::make_unique<std::thread>(_thread_run, this);
29}
30
31thread_base::~thread_base() {
32 finish();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected