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

Method startThread

src/base/ThreadBase.cpp:63–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61 // =========================================================================
62
63 bool ThreadBase::startThread() {
64 _run = true;
65 _exit = false;
66 return (pthread_create(&_thread, nullptr, threadEntryFunc, this) == 0);
67 }
68
69 void ThreadBase::stopThread() {
70 _run = false;

Callers

nothing calls this directly

Calls 1

pthread_createFunction · 0.85

Tested by

no test coverage detected