mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 06:02:07 +03:00
a098266ff5
- Instead of taking the first new thread as an out-parameter, we now bundle the process and its first thread in a struct and use that as the return value. - Make all Process factory functions return ErrorOr. Use this to convert some places to more TRY(). - Drop the "try_" prefix on Process factory functions.
27 lines
633 B
C++
27 lines
633 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <Kernel/FileSystem/VirtualFileSystem.h>
|
|
#include <Kernel/Process.h>
|
|
#include <Kernel/Sections.h>
|
|
#include <Kernel/Tasks/SyncTask.h>
|
|
#include <Kernel/Time/TimeManagement.h>
|
|
|
|
namespace Kernel {
|
|
|
|
UNMAP_AFTER_INIT void SyncTask::spawn()
|
|
{
|
|
MUST(Process::create_kernel_process(KString::must_create("VFS Sync Task"sv), [] {
|
|
dbgln("VFS SyncTask is running");
|
|
for (;;) {
|
|
VirtualFileSystem::sync();
|
|
(void)Thread::current()->sleep(Time::from_seconds(1));
|
|
}
|
|
}));
|
|
}
|
|
|
|
}
|