mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
Kernel: Rewrite ProcFS.
Now the filesystem is generated on-the-fly instead of manually adding and removing inodes as processes spawn and die. The code is convoluted and bloated as I wrote it while sleepless. However, it's still vastly better than the old ProcFS, so I'm committing it. I also added /proc/PID/fd/N symlinks for each of a process's open fd's.
This commit is contained in:
parent
ab56f36bfb
commit
5e9ba2ac84
13 changed files with 1133 additions and 468 deletions
|
@ -201,7 +201,7 @@ class MemoryManager {
|
|||
friend class PhysicalPage;
|
||||
friend class Region;
|
||||
friend class VMObject;
|
||||
friend ByteBuffer procfs$mm(SynthFSInode&);
|
||||
friend ByteBuffer procfs$mm(InodeIdentifier);
|
||||
public:
|
||||
static MemoryManager& the() PURE;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue