Kernel/LibC: add mmap for private anonymous mappings

This will be used by the userspace to get more memory. Currently
kernel handles all allocations, which is not preferable.
This commit is contained in:
2023-09-22 15:41:05 +03:00
parent 4818c6e3dd
commit fee3677fb9
7 changed files with 117 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ set(LIBC_SOURCES
stdio.cpp
stdlib.cpp
string.cpp
sys/mman.cpp
sys/stat.cpp
sys/wait.cpp
termios.cpp