| 422 | } |
| 423 | |
| 424 | void ContextImpl::DestroyThread(FEXCore::Core::InternalThreadState* Thread) { |
| 425 | FEXCore::Allocator::VirtualProtect(&Thread->InterruptFaultPage, sizeof(Thread->InterruptFaultPage), |
| 426 | Allocator::ProtectOptions::Read | Allocator::ProtectOptions::Write); |
| 427 | delete Thread; |
| 428 | } |
| 429 | |
| 430 | #ifndef _WIN32 |
| 431 | void ContextImpl::UnlockAfterFork(FEXCore::Core::InternalThreadState* LiveThread, bool Child) { |
nothing calls this directly
no test coverage detected