| 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; |
nothing calls this directly
no test coverage detected