diff options
| author | 2018-07-16 11:24:00 +0100 | |
|---|---|---|
| committer | 2018-07-16 11:24:00 +0100 | |
| commit | 56cc1c11ecad9e7ea2a36fbb74852a7579b53802 (patch) | |
| tree | 67eb03302858cccb8f5cb8ec3d2989fb6149d163 /src/core/hle/kernel/scheduler.cpp | |
| parent | Merge pull request #669 from lioncash/dynarmic (diff) | |
| download | yuzu-56cc1c11ecad9e7ea2a36fbb74852a7579b53802.tar.gz yuzu-56cc1c11ecad9e7ea2a36fbb74852a7579b53802.tar.xz yuzu-56cc1c11ecad9e7ea2a36fbb74852a7579b53802.zip | |
scheduler: Clear exclusive state when switching contexts
Diffstat (limited to 'src/core/hle/kernel/scheduler.cpp')
| -rw-r--r-- | src/core/hle/kernel/scheduler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/scheduler.cpp b/src/core/hle/kernel/scheduler.cpp index 11c2cb69e..ca8807e19 100644 --- a/src/core/hle/kernel/scheduler.cpp +++ b/src/core/hle/kernel/scheduler.cpp | |||
| @@ -85,6 +85,7 @@ void Scheduler::SwitchContext(Thread* new_thread) { | |||
| 85 | 85 | ||
| 86 | cpu_core->LoadContext(new_thread->context); | 86 | cpu_core->LoadContext(new_thread->context); |
| 87 | cpu_core->SetTlsAddress(new_thread->GetTLSAddress()); | 87 | cpu_core->SetTlsAddress(new_thread->GetTLSAddress()); |
| 88 | cpu_core->ClearExclusiveState(); | ||
| 88 | } else { | 89 | } else { |
| 89 | current_thread = nullptr; | 90 | current_thread = nullptr; |
| 90 | // Note: We do not reset the current process and current page table when idling because | 91 | // Note: We do not reset the current process and current page table when idling because |