| 87 | } |
| 88 | |
| 89 | void threadFree(Thread thread) |
| 90 | { |
| 91 | if (!thread || !thread->finished) return; |
| 92 | svcCloseHandle(thread->handle); |
| 93 | free(thread); |
| 94 | } |
| 95 | |
| 96 | Result threadJoin(Thread thread, u64 timeout_ns) |
| 97 | { |
no outgoing calls
no test coverage detected