========================================================================= -- Constructors and destructor ----------------------------------------- =========================================================================
| 37 | // -- Constructors and destructor ----------------------------------------- |
| 38 | // ========================================================================= |
| 39 | ThreadBase::ThreadBase(const std::string &name) : |
| 40 | _thread(0u), |
| 41 | _run(false), |
| 42 | _exit(false), |
| 43 | _name(name) {} |
| 44 | |
| 45 | ThreadBase::~ThreadBase() {} |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected