MCPcopy Create free account
hub / github.com/Barracuda09/SATPI / Thread

Method Thread

src/base/Thread.cpp:40–46  ·  view source on GitHub ↗

========================================================================= -- Constructors and destructor ----------------------------------------- =========================================================================

Source from the content-addressed store, hash-verified

38 // -- Constructors and destructor -----------------------------------------
39 // =========================================================================
40 Thread::Thread(
41 const std::string &name,
42 FunctionThreadExecute threadExecuteFunction) :
43 _state(State::Unknown),
44 _thread(0u),
45 _name(name),
46 _threadExecuteFunction(threadExecuteFunction) {}
47
48 Thread::~Thread() {}
49

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected