summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-02 12:56:51 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-02 12:56:51 +0100
commitd8f0dd6f3b36987c2a8021e16341dda16cbb7ab1 (patch)
tree29f86d44683f9c11c51d8ef8a4e29da3c7bdd906 /Kernel/Syscall.h
parent05565bad5803fd09c3fb003f92f620b5e6ae11b1 (diff)
downloadserenity-d8f0dd6f3b36987c2a8021e16341dda16cbb7ab1.zip
Start working on sessions and process groups.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r--Kernel/Syscall.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h
index 1e952d8598..f35658bf2a 100644
--- a/Kernel/Syscall.h
+++ b/Kernel/Syscall.h
@@ -40,6 +40,11 @@ enum Function {
PosixTtynameR = 0x2008,
PosixStat = 0x2009,
GetEnvironment = 0x2010,
+ PosixGetsid = 0x2011,
+ PosixSetsid = 0x2012,
+ PosixGetpgid = 0x2013,
+ PosixSetpgid = 0x2014,
+ PosixGetpgrp = 0x2015,
};
void initialize();