mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 11:14:58 +00:00

That's what this class really is; in fact that's what the first line of the comment says it is. This commit does not rename the main files, since those will contain other time-related classes in a little bit.
26 lines
637 B
C++
26 lines
637 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(Duration::from_seconds(1));
|
|
}
|
|
}));
|
|
}
|
|
|
|
}
|