| 119 | void threadSystemGetInfo(ThreadSystem ts, struct ThreadSystemInfo* outInfo); |
| 120 | |
| 121 | static inline void threadSystemAddTask(ThreadSystem ts, TaskFunc func, void* user) { threadSystemAddTasks(ts, func, 1, 0, user); } |
| 122 | |
| 123 | static inline bool threadSystemIsIdle(ThreadSystem ts) { return threadSystemWaitIdleTimeout(ts, 0); } |
| 124 |
no test coverage detected