mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Kernel: Move SystemExposed.* => FileSystem/SysFSComponent.*
This commit is contained in:
parent
807aadbe6e
commit
d40ea1a0a8
Notes:
sideshowbarker
2024-07-18 09:21:37 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/d40ea1a0a84
5 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <Kernel/FileSystem/SysFS.h>
|
||||
#include <Kernel/SystemExposed.h>
|
||||
#include <Kernel/FileSystem/SysFSComponent.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
Loading…
Reference in a new issue