| 25 | }; |
| 26 | |
| 27 | fextl::unique_ptr<FEXCore::Threads::Thread> FEXCore::Threads::Thread::Create(ThreadFunc Func, void* Arg) { |
| 28 | return Ptrs.CreateThread(Func, Arg); |
| 29 | } |
| 30 | |
| 31 | void FEXCore::Threads::Thread::CleanupAfterFork() { |
| 32 | return Ptrs.CleanupAfterFork(); |
nothing calls this directly
no test coverage detected