| 141 | ~ThreadSystemClass() { this->exit(&gThreadSystemExitDescDefault); } |
| 142 | |
| 143 | bool init(const ThreadSystemInitDesc* desc) |
| 144 | { |
| 145 | if (threadSystem) |
| 146 | this->exit(&gThreadSystemExitDescDefault); |
| 147 | return threadSystemInit(&threadSystem, desc); |
| 148 | } |
| 149 | |
| 150 | void exit(const struct ThreadSystemExitDesc* desc) { threadSystemExit(&threadSystem, desc); } |
| 151 |
no test coverage detected