summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/scheduler.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-17 07:33:32 -0700
committerGravatar GitHub2018-07-17 07:33:32 -0700
commit88a3140c9b20b2f079f915842b4f30bdc800a53a (patch)
tree8fdcadf90977f58f0d1c14ed09a9313ba88d72d9 /src/core/hle/kernel/scheduler.cpp
parentMerge pull request #672 from SciresM/to_address_fix (diff)
parentscheduler: Clear exclusive state when switching contexts (diff)
downloadyuzu-88a3140c9b20b2f079f915842b4f30bdc800a53a.tar.gz
yuzu-88a3140c9b20b2f079f915842b4f30bdc800a53a.tar.xz
yuzu-88a3140c9b20b2f079f915842b4f30bdc800a53a.zip
Merge pull request #671 from MerryMage/clear-exclusive-state
scheduler: Clear exclusive state when switching contexts
Diffstat (limited to 'src/core/hle/kernel/scheduler.cpp')
-rw-r--r--src/core/hle/kernel/scheduler.cpp1
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