| 94 | } |
| 95 | |
| 96 | Result threadJoin(Thread thread, u64 timeout_ns) |
| 97 | { |
| 98 | if (!thread || thread->finished) return 0; |
| 99 | return svcWaitSynchronization(thread->handle, timeout_ns); |
| 100 | } |
| 101 | |
| 102 | void threadDetach(Thread thread) |
| 103 | { |
no outgoing calls
no test coverage detected