mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
Add a few more InterruptDisablers.
This commit is contained in:
parent
1c49b34b93
commit
ce126120d1
Notes:
sideshowbarker
2024-07-19 18:39:12 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/ce126120d16
1 changed files with 6 additions and 1 deletions
|
@ -102,6 +102,7 @@ void Task::allocateLDT()
|
|||
|
||||
Vector<Task*> Task::allTasks()
|
||||
{
|
||||
InterruptDisabler disabler;
|
||||
Vector<Task*> tasks;
|
||||
tasks.ensureCapacity(s_tasks->sizeSlow());
|
||||
for (auto* task = s_tasks->head(); task; task = task->next())
|
||||
|
@ -441,7 +442,8 @@ void Task::sys$exit(int status)
|
|||
|
||||
void Task::taskDidCrash(Task* crashedTask)
|
||||
{
|
||||
// NOTE: This is called from an excepton handler, so interrupts are disabled.
|
||||
ASSERT_INTERRUPTS_DISABLED();
|
||||
|
||||
crashedTask->setState(Crashing);
|
||||
crashedTask->dumpRegions();
|
||||
|
||||
|
@ -499,6 +501,8 @@ void switchNow()
|
|||
|
||||
bool scheduleNewTask()
|
||||
{
|
||||
ASSERT_INTERRUPTS_DISABLED();
|
||||
|
||||
if (!current) {
|
||||
// XXX: The first ever context_switch() goes to the idle task.
|
||||
// This to setup a reliable place we can return to.
|
||||
|
@ -801,6 +805,7 @@ pid_t Task::sys$getpid()
|
|||
|
||||
pid_t Task::sys$waitpid(pid_t waitee)
|
||||
{
|
||||
InterruptDisabler disabler;
|
||||
if (!Task::fromPID(waitee))
|
||||
return -1;
|
||||
m_waitee = waitee;
|
||||
|
|
Loading…
Reference in a new issue