From 5e9ba2ac84ca4766111b1845ca07fc32872e82fc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 3 Feb 2019 12:33:11 +0100 Subject: 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. --- Kernel/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Kernel/Makefile') diff --git a/Kernel/Makefile b/Kernel/Makefile index 5fe43e0b44..e547fa091d 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -16,7 +16,7 @@ KERNEL_OBJS = \ Console.o \ IRQHandler.o \ kprintf.o \ - ProcFileSystem.o \ + ProcFS.o \ RTC.o \ TTY.o \ PTYMultiplexer.o \ -- cgit v1.2.3