1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-30 15:02:06 +00:00

Kernel: Rename VFS => VirtualFileSystem

This commit is contained in:
Andreas Kling 2021-07-11 00:25:24 +02:00
parent d53d9d3677
commit 0d39bd04d3
38 changed files with 124 additions and 124 deletions

View file

@ -18,7 +18,7 @@ UNMAP_AFTER_INIT void SyncTask::spawn()
Process::create_kernel_process(syncd_thread, "SyncTask", [] {
dbgln("SyncTask is running");
for (;;) {
VFS::the().sync();
VirtualFileSystem::the().sync();
(void)Thread::current()->sleep(Time::from_seconds(1));
}
});