1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 06:57:45 +00:00

Move kernel symbolication code out of init.cpp and into its own KSym files.

Also use a simple array of { dword, const char* } for the KSyms and put the
whole shebang in kmalloc_eternal() memory. This was a fugly source of
kmalloc perma-frag.
This commit is contained in:
Andreas Kling 2018-12-24 22:59:10 +01:00
parent 6a9fa3e41a
commit 503e32552c
7 changed files with 163 additions and 157 deletions

View file

@ -23,7 +23,8 @@ KERNEL_OBJS = \
Scheduler.o \
DoubleBuffer.o \
ELFImage.o \
ELFLoader.o
ELFLoader.o \
KSyms.o
VFS_OBJS = \
../VirtualFileSystem/DiskDevice.o \