summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-28 09:57:22 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-28 09:57:22 +0100
commit1d5afbdffc2ca0262c9ca335c1a30e7b214d13a5 (patch)
treef4e29f3fed3ea37fa6290e53f8ea6b9a298b2c8c /Kernel/Syscall.h
parente904f193c1d49ccb18c75e6e1b1ef0a8e2dc1db7 (diff)
downloadserenity-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.h1
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();