1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00

Kernel: Mark sys$getpgid as not needing the big lock

Access to the process's process group is already serialized by
SpinlockProtected.
This commit is contained in:
Andreas Kling 2023-04-03 13:33:04 +02:00
parent 775e6d6865
commit 2ddd69260c
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ ErrorOr<FlatPtr> Process::sys$setsid()
ErrorOr<FlatPtr> Process::sys$getpgid(pid_t pid)
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
VERIFY_NO_PROCESS_BIG_LOCK(this);
TRY(require_promise(Pledge::stdio));
if (pid == 0)
return pgid().value();