mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +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
Notes:
sideshowbarker
2024-07-17 16:23:55 +09:00
Author: https://github.com/sin-ack
Commit: 70337f3a4b
Pull-request: https://github.com/SerenityOS/serenity/pull/15428
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/linusg
Reviewed-by: https://github.com/timschumi
5 changed files with 43 additions and 0 deletions
|
@ -163,6 +163,7 @@ enum class NeedsBigProcessLock {
|
|||
S(sethostname, NeedsBigProcessLock::No) \
|
||||
S(setkeymap, NeedsBigProcessLock::No) \
|
||||
S(setpgid, NeedsBigProcessLock::Yes) \
|
||||
S(setregid, NeedsBigProcessLock::No) \
|
||||
S(setresgid, NeedsBigProcessLock::No) \
|
||||
S(setresuid, NeedsBigProcessLock::No) \
|
||||
S(setreuid, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue