| 66 | } |
| 67 | |
| 68 | u32 ThreadCreate(u32 parent_tid, bool detached, void *arg) { |
| 69 | return thread_registry->CreateThread(0, detached, parent_tid, arg); |
| 70 | } |
| 71 | |
| 72 | void ThreadContextLsanBase::ThreadStart(u32 tid, tid_t os_id, |
| 73 | ThreadType thread_type, void *arg) { |
no test coverage detected