mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-19 15:10:19 +01:00
* Implement both RawSPU and threaded SPU page fault recovery * Guard page_fault_notification_entries access with a mutex * Add missing lock in sys_ppu_thread_recover_page_fault/get_page_fault_context * Fix EINVAL check in sys_ppu_thread_recover_page_fault, previously when the event was not found begin() was erased and CELL_OK was returned. * Fixed page fault recovery waiting logic: - Do not rely on a single thread_ctrl notification (unsafe) - Avoided a race where ::awake(ppu) can be called before ::sleep(ppu) therefore nop-ing out the notification * Avoid inconsistencies with vm flags on page fault cause detection * Fix sys_mmapper_enable_page_fault_notification EBUSY check from RE it's allowed to register the same queue twice (on a different area) but not to enable page fault notifications twice |
||
|---|---|---|
| .. | ||
| lv2 | ||
| Modules | ||
| Common.h | ||
| ErrorCodes.h | ||
| MFC.cpp | ||
| MFC.h | ||
| PPCDisAsm.h | ||
| PPUAnalyser.cpp | ||
| PPUAnalyser.h | ||
| PPUCallback.h | ||
| PPUDisAsm.cpp | ||
| PPUDisAsm.h | ||
| PPUFunction.cpp | ||
| PPUFunction.h | ||
| PPUInterpreter.cpp | ||
| PPUInterpreter.h | ||
| PPUModule.cpp | ||
| PPUModule.h | ||
| PPUOpcodes.h | ||
| PPUThread.cpp | ||
| PPUThread.h | ||
| PPUTranslator.cpp | ||
| PPUTranslator.h | ||
| RawSPUThread.cpp | ||
| RawSPUThread.h | ||
| SPUAnalyser.cpp | ||
| SPUAnalyser.h | ||
| SPUASMJITRecompiler.cpp | ||
| SPUASMJITRecompiler.h | ||
| SPUDisAsm.cpp | ||
| SPUDisAsm.h | ||
| SPUInterpreter.cpp | ||
| SPUInterpreter.h | ||
| SPUOpcodes.h | ||
| SPURecompiler.cpp | ||
| SPURecompiler.h | ||
| SPUThread.cpp | ||
| SPUThread.h | ||