mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:27:35 +00:00
Kernel+LibC: Implement setregid(2)
This copies and adapts the setresgid syscall, following in the footsteps of setreuid and setresuid.
This commit is contained in:
parent
2a502fe232
commit
70337f3a4b
5 changed files with 43 additions and 0 deletions
|
@ -369,6 +369,7 @@ public:
|
|||
ErrorOr<FlatPtr> sys$setgid(GroupID);
|
||||
ErrorOr<FlatPtr> sys$setreuid(UserID, UserID);
|
||||
ErrorOr<FlatPtr> sys$setresuid(UserID, UserID, UserID);
|
||||
ErrorOr<FlatPtr> sys$setregid(GroupID, GroupID);
|
||||
ErrorOr<FlatPtr> sys$setresgid(GroupID, GroupID, GroupID);
|
||||
ErrorOr<FlatPtr> sys$alarm(unsigned seconds);
|
||||
ErrorOr<FlatPtr> sys$faccessat(Userspace<Syscall::SC_faccessat_params const*>);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue