* @brief Construct a new ThreadMgr object. * * Initializes thread tracking structures and prepares the manager for use. */
| 39 | * Initializes thread tracking structures and prepares the manager for use. |
| 40 | */ |
| 41 | ThreadMgr() : numRealThreads(0), numMachineThreads(0) {} |
| 42 | ThreadMgr(const ThreadMgr&) = delete; |
| 43 | ThreadMgr& operator=(const ThreadMgr&) = delete; |
| 44 |
nothing calls this directly
no outgoing calls
no test coverage detected