| 34 | namespace FEXCore::CPU { |
| 35 | |
| 36 | static void SleepThread(FEXCore::Context::ContextImpl* CTX, FEXCore::Core::CpuStateFrame* Frame) { |
| 37 | CTX->SyscallHandler->SleepThread(CTX, Frame); |
| 38 | } |
| 39 | |
| 40 | constexpr size_t MAX_DISPATCHER_CODE_SIZE = 4096 * 4; |
| 41 |
nothing calls this directly
no test coverage detected