diff options
author | Andreas Kling <kling@serenityos.org> | 2021-07-11 01:14:53 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-11 01:14:53 +0200 |
commit | d40ea1a0a84d5056924d17efaea000a4b2214109 (patch) | |
tree | 8306e3668f6e295176fd2c14e6268b5c1cfccf7f | |
parent | 807aadbe6edabdd14d00aff2a00feb5dc718b11a (diff) | |
download | serenity-d40ea1a0a84d5056924d17efaea000a4b2214109.zip |
Kernel: Move SystemExposed.* => FileSystem/SysFSComponent.*
-rw-r--r-- | Kernel/ACPI/Parser.h | 2 | ||||
-rw-r--r-- | Kernel/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Kernel/FileSystem/SysFS.h | 2 | ||||
-rw-r--r-- | Kernel/FileSystem/SysFSComponent.cpp (renamed from Kernel/SystemExposed.cpp) | 2 | ||||
-rw-r--r-- | Kernel/FileSystem/SysFSComponent.h (renamed from Kernel/SystemExposed.h) | 0 |
5 files changed, 4 insertions, 4 deletions
diff --git a/Kernel/ACPI/Parser.h b/Kernel/ACPI/Parser.h index fb3bab47f2..9087443596 100644 --- a/Kernel/ACPI/Parser.h +++ b/Kernel/ACPI/Parser.h @@ -9,8 +9,8 @@ #include <AK/Types.h> #include <Kernel/ACPI/Definitions.h> #include <Kernel/ACPI/Initialize.h> +#include <Kernel/FileSystem/SysFSComponent.h> #include <Kernel/PhysicalAddress.h> -#include <Kernel/SystemExposed.h> #include <Kernel/VM/Region.h> #include <Kernel/VirtualAddress.h> diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index 0a2cc43a36..7241ed58f2 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -113,6 +113,7 @@ set(KERNEL_SOURCES FileSystem/Plan9FileSystem.cpp FileSystem/ProcFS.cpp FileSystem/SysFS.cpp + FileSystem/SysFSComponent.cpp FileSystem/TmpFS.cpp FileSystem/VirtualFileSystem.cpp FutexQueue.cpp @@ -227,7 +228,6 @@ set(KERNEL_SOURCES Syscalls/waitid.cpp Syscalls/inode_watcher.cpp Syscalls/write.cpp - SystemExposed.cpp TTY/ConsoleManagement.cpp TTY/MasterPTY.cpp TTY/PTYMultiplexer.cpp diff --git a/Kernel/FileSystem/SysFS.h b/Kernel/FileSystem/SysFS.h index 99c079fdc2..6486579eeb 100644 --- a/Kernel/FileSystem/SysFS.h +++ b/Kernel/FileSystem/SysFS.h @@ -8,7 +8,7 @@ #include <Kernel/FileSystem/FileSystem.h> #include <Kernel/FileSystem/Inode.h> -#include <Kernel/SystemExposed.h> +#include <Kernel/FileSystem/SysFSComponent.h> namespace Kernel { diff --git a/Kernel/SystemExposed.cpp b/Kernel/FileSystem/SysFSComponent.cpp index b308c58619..3b4dc52a0e 100644 --- a/Kernel/SystemExposed.cpp +++ b/Kernel/FileSystem/SysFSComponent.cpp @@ -5,7 +5,7 @@ */ #include <Kernel/FileSystem/SysFS.h> -#include <Kernel/SystemExposed.h> +#include <Kernel/FileSystem/SysFSComponent.h> namespace Kernel { diff --git a/Kernel/SystemExposed.h b/Kernel/FileSystem/SysFSComponent.h index 7ed8d4d1bc..7ed8d4d1bc 100644 --- a/Kernel/SystemExposed.h +++ b/Kernel/FileSystem/SysFSComponent.h |