scheduler: Clear exclusive state when switching contexts

This commit is contained in:
MerryMage 2018-07-16 11:24:00 +01:00
parent a9caafead6
commit bd97579188
6 changed files with 11 additions and 0 deletions

View file

@ -226,6 +226,10 @@ void ARM_Dynarmic::ClearInstructionCache() {
jit->ClearCache();
}
void ARM_Dynarmic::ClearExclusiveState() {
jit->ClearExclusiveState();
}
void ARM_Dynarmic::PageTableChanged() {
jit = MakeJit(cb);
current_page_table = Memory::GetCurrentPageTable();