summaryrefslogtreecommitdiff
path: root/Kernel/Forward.h
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-20 17:51:18 +0200
committerLinus Groh <mail@linusgroh.de>2023-02-24 22:14:18 +0100
commitc56e1c53783ae0f2c7388160cf88c0c6b7c09081 (patch)
tree38046b7a448977b8fe22d3a22077373e786c2584 /Kernel/Forward.h
parent9216caeec20c41e96e969d8992d6a104649a94de (diff)
downloadserenity-c56e1c53783ae0f2c7388160cf88c0c6b7c09081.zip
Kernel/FileSystem: Simplify the ProcFS significantly
Since the ProcFS doesn't hold many global objects within it, the need for a fully-structured design of backing components and a registry like with the SysFS is no longer true. To acommodate this, let's remove all backing store and components of the ProcFS, so now it resembles what we had in the early days of ProcFS in the project - a mostly-static filesystem, with very small amount of kmalloc allocations needed. We still use the inode index mechanism to understand the role of each inode, but this is done in a much "static"ier way than before.
Diffstat (limited to 'Kernel/Forward.h')
-rw-r--r--Kernel/Forward.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Kernel/Forward.h b/Kernel/Forward.h
index becce1db69..e12681f812 100644
--- a/Kernel/Forward.h
+++ b/Kernel/Forward.h
@@ -40,13 +40,7 @@ class MasterPTY;
class Mount;
class PerformanceEventBuffer;
class ProcFS;
-class ProcFSExposedComponent;
-class ProcFSExposedDirectory;
class ProcFSInode;
-class ProcFSProcessInformation;
-class ProcFSRootDirectory;
-class ProcFSSystemBoolean;
-class ProcFSSystemDirectory;
class Process;
class ProcessGroup;
class RAMFS;