diff options
Diffstat (limited to 'src/core/hle/kernel/scheduler.cpp')
| -rw-r--r-- | src/core/hle/kernel/scheduler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/scheduler.cpp b/src/core/hle/kernel/scheduler.cpp index 61b8a396a..2b12c0dbf 100644 --- a/src/core/hle/kernel/scheduler.cpp +++ b/src/core/hle/kernel/scheduler.cpp | |||
| @@ -658,7 +658,7 @@ void Scheduler::Reload() { | |||
| 658 | cpu_core.LoadContext(thread->GetContext64()); | 658 | cpu_core.LoadContext(thread->GetContext64()); |
| 659 | cpu_core.SetTlsAddress(thread->GetTLSAddress()); | 659 | cpu_core.SetTlsAddress(thread->GetTLSAddress()); |
| 660 | cpu_core.SetTPIDR_EL0(thread->GetTPIDR_EL0()); | 660 | cpu_core.SetTPIDR_EL0(thread->GetTPIDR_EL0()); |
| 661 | cpu_core.ChangeProcessorId(this->core_id); | 661 | cpu_core.ChangeProcessorID(this->core_id); |
| 662 | cpu_core.ClearExclusiveState(); | 662 | cpu_core.ClearExclusiveState(); |
| 663 | } | 663 | } |
| 664 | } | 664 | } |
| @@ -691,7 +691,7 @@ void Scheduler::SwitchContextStep2() { | |||
| 691 | cpu_core.LoadContext(new_thread->GetContext64()); | 691 | cpu_core.LoadContext(new_thread->GetContext64()); |
| 692 | cpu_core.SetTlsAddress(new_thread->GetTLSAddress()); | 692 | cpu_core.SetTlsAddress(new_thread->GetTLSAddress()); |
| 693 | cpu_core.SetTPIDR_EL0(new_thread->GetTPIDR_EL0()); | 693 | cpu_core.SetTPIDR_EL0(new_thread->GetTPIDR_EL0()); |
| 694 | cpu_core.ChangeProcessorId(this->core_id); | 694 | cpu_core.ChangeProcessorID(this->core_id); |
| 695 | cpu_core.ClearExclusiveState(); | 695 | cpu_core.ClearExclusiveState(); |
| 696 | } | 696 | } |
| 697 | } | 697 | } |