mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
Add ASSERT_INTERRUPTS_DISABLED in Task::fromPID().
This commit is contained in:
parent
63e5583c18
commit
10347b9ae8
Notes:
sideshowbarker
2024-07-19 18:38:12 +09:00
Author: https://github.com/awesomekling
Commit: 10347b9ae8
1 changed files with 1 additions and 0 deletions
|
@ -647,6 +647,7 @@ static bool contextSwitch(Task* t)
|
||||||
|
|
||||||
Task* Task::fromPID(pid_t pid)
|
Task* Task::fromPID(pid_t pid)
|
||||||
{
|
{
|
||||||
|
ASSERT_INTERRUPTS_DISABLED();
|
||||||
for (auto* task = s_tasks->head(); task; task = task->next()) {
|
for (auto* task = s_tasks->head(); task; task = task->next()) {
|
||||||
if (task->pid() == pid)
|
if (task->pid() == pid)
|
||||||
return task;
|
return task;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue