Kernel/LibC: userspace malloc now uses mmap to get memory

We could remove syscalls to allocate more memory. This was not
something the kernel should have done.
This commit is contained in:
2023-09-23 02:26:23 +03:00
parent fee3677fb9
commit f662aa6da2
6 changed files with 225 additions and 45 deletions

View File

@@ -7,6 +7,7 @@ set(LIBC_SOURCES
ctype.cpp
dirent.cpp
fcntl.cpp
malloc.cpp
printf_impl.cpp
pwd.cpp
signal.cpp