1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

Kernel: Rename FS => FileSystem

This matches our common naming style better.
This commit is contained in:
Andreas Kling 2021-07-11 00:20:38 +02:00
parent dd65f52331
commit d53d9d3677
33 changed files with 108 additions and 108 deletions

View file

@ -20,9 +20,9 @@ KResultOr<FlatPtr> Process::sys$reboot()
REQUIRE_NO_PROMISES;
dbgln("acquiring FS locks...");
FS::lock_all();
FileSystem::lock_all();
dbgln("syncing mounted filesystems...");
FS::sync();
FileSystem::sync();
dbgln("attempting reboot via ACPI");
if (ACPI::is_enabled())
ACPI::Parser::the()->try_acpi_reboot();
@ -41,9 +41,9 @@ KResultOr<FlatPtr> Process::sys$halt()
ConsoleManagement::the().switch_to_debug();
dbgln("acquiring FS locks...");
FS::lock_all();
FileSystem::lock_all();
dbgln("syncing mounted filesystems...");
FS::sync();
FileSystem::sync();
dbgln("attempting system shutdown...");
// QEMU Shutdown
IO::out16(0x604, 0x2000);