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:
parent
5ec3f5433e
commit
805319ed30
13 changed files with 165 additions and 165 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue