Hope now scheduler won't crash at IPC Service

This commit is contained in:
Alex
2022-11-20 16:13:49 +02:00
parent f907ca907d
commit 1afe255fed
2 changed files with 30 additions and 23 deletions

View File

@ -131,7 +131,10 @@ namespace InterProcessCommunication
trace("IPC Service Started.");
TaskManager->GetCurrentThread()->SetPriority(1);
// TODO: do something useful here, like, IPC event viewer or smth...
CPU::Pause(true);
while (1)
{
// The scheduler doesn't like CPU::Pause for some reason. :/
}
}
IPC::IPC()