mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
Kernel: Rename FS => FileSystem
This matches our common naming style better.
This commit is contained in:
parent
dd65f52331
commit
d53d9d3677
Notes:
sideshowbarker
2024-07-18 09:22:18 +09:00
Author: https://github.com/awesomekling
Commit: d53d9d3677
33 changed files with 108 additions and 108 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue