Kernel: Move NetworkTask startup into NetworkTask::spawn()

This commit is contained in:
Andreas Kling 2020-04-09 13:31:05 +02:00
commit f25d2f5518
Notes: sideshowbarker 2024-07-19 07:47:06 +09:00
3 changed files with 15 additions and 7 deletions

View file

@ -318,10 +318,8 @@ void init_stage2()
}
thread->set_priority(THREAD_PRIORITY_HIGH);
}
{
Thread* thread = nullptr;
Process::create_kernel_process(thread, "NetworkTask", NetworkTask_main);
}
NetworkTask::spawn();
Process::current->sys$exit(0);
ASSERT_NOT_REACHED();