Add ASSERT_INTERRUPTS_DISABLED in Task::fromPID().

This commit is contained in:
Andreas Kling 2018-10-26 15:11:29 +02:00
parent 63e5583c18
commit 10347b9ae8

View file

@ -647,6 +647,7 @@ static bool contextSwitch(Task* t)
Task* Task::fromPID(pid_t pid)
{
ASSERT_INTERRUPTS_DISABLED();
for (auto* task = s_tasks->head(); task; task = task->next()) {
if (task->pid() == pid)
return task;