| 10 | } |
| 11 | |
| 12 | static void _thread_begin(void* arg) |
| 13 | { |
| 14 | Thread t = (Thread)arg; |
| 15 | initThreadVars(t); |
| 16 | t->ep(t->arg); |
| 17 | threadExit(0); |
| 18 | } |
| 19 | |
| 20 | Thread threadCreate(ThreadFunc entrypoint, void* arg, size_t stack_size, int prio, int core_id, bool detached) |
| 21 | { |
nothing calls this directly
no test coverage detected