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:
parent
775e6d6865
commit
2ddd69260c
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue