You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We'll need dynamic memory allocation sooner rather than later in userland so let's start by implementing mmap and munmap syscalls. I think we might not want to support all options, we should try to achieve the following goal(s) instead:
in a userland program, it should be possible to allocate some memory dynamically
in a userland program, it should be possible to de-allocate (free) memory
ideally, we should not be able to share memory between the userland programs
The text was updated successfully, but these errors were encountered:
See: https://man7.org/linux/man-pages/man2/mmap.2.html
We'll need dynamic memory allocation sooner rather than later in userland so let's start by implementing
mmap
andmunmap
syscalls. I think we might not want to support all options, we should try to achieve the following goal(s) instead:The text was updated successfully, but these errors were encountered: