| 150 | void exit(const struct ThreadSystemExitDesc* desc) { threadSystemExit(&threadSystem, desc); } |
| 151 | |
| 152 | void addTask(TaskFunc func, void* data) const { threadSystemAddTask(threadSystem, func, data); } |
| 153 | |
| 154 | template<typename T> |
| 155 | void addTasks(TaskFunc func, uint64_t count, T* dataArray) const |
nothing calls this directly
no test coverage detected