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

Kernel: Replace "Folder" => "Directory" everywhere

Folders are a GUI concept, file systems have directories. :^)
This commit is contained in:
Andreas Kling 2021-07-11 01:33:40 +02:00
parent 5ec3f5433e
commit 805319ed30
13 changed files with 165 additions and 165 deletions

View file

@ -60,13 +60,13 @@ UNMAP_AFTER_INIT ExposedComponent::ExposedComponent(String name, PhysicalAddress
{
}
UNMAP_AFTER_INIT void ExposedFolder::initialize()
UNMAP_AFTER_INIT void ExposedDirectory::initialize()
{
auto acpi_folder = adopt_ref(*new (nothrow) ExposedFolder());
auto acpi_folder = adopt_ref(*new (nothrow) ExposedDirectory());
SysFSComponentRegistry::the().register_new_component(acpi_folder);
}
UNMAP_AFTER_INIT ExposedFolder::ExposedFolder()
UNMAP_AFTER_INIT ExposedDirectory::ExposedDirectory()
: SysFSDirectory("acpi", SysFSComponentRegistry::the().root_folder())
{
NonnullRefPtrVector<SysFSComponent> components;