mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
Kernel: Mark FinalizerTask::spawn() as UNMAP_AFTER_INIT
This commit is contained in:
parent
c8b6bd4b97
commit
83841e47e5
Notes:
sideshowbarker
2024-07-18 12:34:55 +09:00
Author: https://github.com/bgianfo
Commit: 83841e47e5
Pull-request: https://github.com/SerenityOS/serenity/pull/7938
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ static void finalizer_task(void*)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
void FinalizerTask::spawn()
|
UNMAP_AFTER_INIT void FinalizerTask::spawn()
|
||||||
{
|
{
|
||||||
RefPtr<Thread> finalizer_thread;
|
RefPtr<Thread> finalizer_thread;
|
||||||
auto finalizer_process = Process::create_kernel_process(finalizer_thread, "FinalizerTask", finalizer_task, nullptr);
|
auto finalizer_process = Process::create_kernel_process(finalizer_thread, "FinalizerTask", finalizer_task, nullptr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue