mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
27 lines
641 B
C++
27 lines
641 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()
|
|
{
|
|
RefPtr<Thread> syncd_thread;
|
|
Process::create_kernel_process(syncd_thread, "SyncTask", [] {
|
|
dbgln("SyncTask is running");
|
|
for (;;) {
|
|
VirtualFileSystem::sync();
|
|
(void)Thread::current()->sleep(Time::from_seconds(1));
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|