diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-28 09:57:22 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-28 09:57:22 +0100 |
commit | 1d5afbdffc2ca0262c9ca335c1a30e7b214d13a5 (patch) | |
tree | f4e29f3fed3ea37fa6290e53f8ea6b9a298b2c8c /Kernel/Syscall.h | |
parent | e904f193c1d49ccb18c75e6e1b1ef0a8e2dc1db7 (diff) | |
download | serenity-1d5afbdffc2ca0262c9ca335c1a30e7b214d13a5.zip |
Add sys$set_mmap_name and use it from LibC's malloc.
It's nice to be able to identify mmap's in /proc/PID/vm.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h index 68a36ffd52..1d55e4bd2e 100644 --- a/Kernel/Syscall.h +++ b/Kernel/Syscall.h @@ -34,6 +34,7 @@ enum Function { GetArguments = 0x2002, PosixChdir = 0x2003, PosixUname = 0x2004, + SetMmapName = 0x2005, }; void initialize(); |