mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:07:36 +00:00
Add geteuid() and getegid().
There's no support for set-uid or set-gid executables yet so these don't actually do anything. It's just nice to get the boilerplate stuff in.
This commit is contained in:
parent
60a8144b68
commit
e4611248c4
6 changed files with 38 additions and 3 deletions
|
@ -49,6 +49,8 @@ enum Function {
|
|||
PosixTcgetpgrp = 0x2017,
|
||||
PosixFork = 0x2018,
|
||||
PosixExecve = 0x2019,
|
||||
PosixGeteuid = 0x2020,
|
||||
PosixGetegid = 0x2021,
|
||||
};
|
||||
|
||||
void initialize();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue