diff options
author | Andreas Kling <awesomekling@gmail.com> | 2020-01-02 12:44:21 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2020-01-02 12:44:21 +0100 |
commit | 7f043346646e1dc88fca16b75914a9d4aa0efb56 (patch) | |
tree | 65b4d4a1c7c83a5dc92cce93d8fb1375a6ff216a /Kernel/Process.h | |
parent | 4fa7146da1b8cdf211a5ca2cb38aeb29ef530694 (diff) | |
download | serenity-7f043346646e1dc88fca16b75914a9d4aa0efb56.zip |
Kernel: Remove broken implementation of Unix SHM
This code never worked, as was never used for anything. We can build
a much better SHM implementation on top of TmpFS or similar when we
get to the point when we need one.
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r-- | Kernel/Process.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h index 1bf6923c52..55811c4e44 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -108,8 +108,6 @@ public: int sys$dump_backtrace(); int sys$gettid(); int sys$donate(int tid); - int sys$shm_open(const char* name, int flags, mode_t); - int sys$shm_unlink(const char* name); int sys$ftruncate(int fd, off_t); pid_t sys$setsid(); pid_t sys$getsid(pid_t); |