summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-16 12:13:43 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-16 12:13:43 +0100
commit4ea28bf0a57ab88d3c5e3aec81c28de53c6ebc5b (patch)
treecbd8885f633b384a07050b0948f7197d87d46ba5 /Kernel/Syscall.h
parent4db78dabd37cdf16bcd9df7733936f91f581935a (diff)
downloadserenity-4ea28bf0a57ab88d3c5e3aec81c28de53c6ebc5b.zip
Kernel: Add a simple shared memory API for two processes only.
And use this to implement shared bitmaps between WindowServer and clients.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r--Kernel/Syscall.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h
index 11c0964a14..d250e1c095 100644
--- a/Kernel/Syscall.h
+++ b/Kernel/Syscall.h
@@ -79,6 +79,9 @@
__ENUMERATE_SYSCALL(accept) \
__ENUMERATE_SYSCALL(listen) \
__ENUMERATE_SYSCALL(connect) \
+ __ENUMERATE_SYSCALL(create_shared_buffer) \
+ __ENUMERATE_SYSCALL(get_shared_buffer) \
+ __ENUMERATE_SYSCALL(release_shared_buffer) \
#ifdef SERENITY