mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:47:46 +00:00
LibCore: Add syscall wrapper for munmap()
This commit is contained in:
parent
53e9b9758e
commit
45842a5208
2 changed files with 8 additions and 0 deletions
|
@ -21,5 +21,6 @@ ErrorOr<void> sigaction(int signal, struct sigaction const* action, struct sigac
|
|||
ErrorOr<struct stat> fstat(int fd);
|
||||
ErrorOr<int> fcntl(int fd, int command, ...);
|
||||
ErrorOr<void*> mmap(void* address, size_t, int protection, int flags, int fd, off_t, size_t alignment = 0, StringView name = {});
|
||||
ErrorOr<void> munmap(void* address, size_t);
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue