mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
kern: fix check for thread-is-current in KDebugBase::SetThreadContext
This commit is contained in:
parent
aee89db748
commit
81bf8c577a
1 changed files with 1 additions and 1 deletions
|
@ -469,8 +469,8 @@ namespace ams::kern {
|
|||
for (auto i = 0; i < static_cast<s32>(cpu::NumCores); ++i) {
|
||||
if (thread == Kernel::GetScheduler(i).GetSchedulerCurrentThread()) {
|
||||
current = true;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
/* If the thread is current, retry until it isn't. */
|
||||
|
|
Loading…
Reference in a new issue