|
|
|
@ -1109,17 +1109,29 @@ void KernelCore::Suspend(bool suspended) {
|
|
|
|
|
const bool should_suspend{exception_exited || suspended};
|
|
|
|
|
const auto activity = should_suspend ? ProcessActivity::Paused : ProcessActivity::Runnable;
|
|
|
|
|
|
|
|
|
|
for (auto* process : GetProcessList()) {
|
|
|
|
|
std::vector<KScopedAutoObject<KThread>> process_threads;
|
|
|
|
|
{
|
|
|
|
|
KScopedSchedulerLock sl{*this};
|
|
|
|
|
|
|
|
|
|
if (auto* process = CurrentProcess(); process != nullptr) {
|
|
|
|
|
process->SetActivity(activity);
|
|
|
|
|
|
|
|
|
|
if (should_suspend) {
|
|
|
|
|
// Wait for execution to stop
|
|
|
|
|
if (!should_suspend) {
|
|
|
|
|
// Runnable now; no need to wait.
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (auto* thread : process->GetThreadList()) {
|
|
|
|
|
process_threads.emplace_back(thread);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Wait for execution to stop.
|
|
|
|
|
for (auto& thread : process_threads) {
|
|
|
|
|
thread->WaitUntilSuspended();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void KernelCore::ShutdownCores() {
|
|
|
|
|
KScopedSchedulerLock lk{*this};
|
|
|
|
|