summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-08 23:44:12 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-08 23:44:12 +0200
commit99f3cc26c3e69b0ad7f104cd20189cd6fd4c3cf1 (patch)
tree3de12393e11c46222ffaffe6be06c4c347f45c8f /Kernel/Syscall.h
parent7f2eeb0b35d07469815f8221c8f5e0d300899f58 (diff)
downloadserenity-99f3cc26c3e69b0ad7f104cd20189cd6fd4c3cf1.zip
Kernel+LibC: Add stubs for POSIX shared memory API.
Specifically shm_open() and shm_unlink(). This patch just adds stubs.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r--Kernel/Syscall.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h
index f609e16553..b11a079d1e 100644
--- a/Kernel/Syscall.h
+++ b/Kernel/Syscall.h
@@ -96,6 +96,8 @@
__ENUMERATE_SYSCALL(gettid) \
__ENUMERATE_SYSCALL(donate) \
__ENUMERATE_SYSCALL(rename) \
+ __ENUMERATE_SYSCALL(shm_open) \
+ __ENUMERATE_SYSCALL(shm_close) \
namespace Syscall {