Start working on sessions and process groups.

This commit is contained in:
Andreas Kling 2018-11-02 12:56:51 +01:00
commit d8f0dd6f3b
Notes: sideshowbarker 2024-07-19 18:34:30 +09:00
8 changed files with 157 additions and 2 deletions

View file

@ -40,6 +40,11 @@ enum Function {
PosixTtynameR = 0x2008,
PosixStat = 0x2009,
GetEnvironment = 0x2010,
PosixGetsid = 0x2011,
PosixSetsid = 0x2012,
PosixGetpgid = 0x2013,
PosixSetpgid = 0x2014,
PosixGetpgrp = 0x2015,
};
void initialize();