1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

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

This syscall is only concerned with the current thread.
This commit is contained in:
Andreas Kling 2023-04-03 16:19:12 +02:00
parent 374f4aeab9
commit d1fae8b09c
2 changed files with 2 additions and 2 deletions

View file

@ -179,7 +179,7 @@ enum class NeedsBigProcessLock {
S(sigpending, NeedsBigProcessLock::Yes) \
S(sigprocmask, NeedsBigProcessLock::Yes) \
S(sigreturn, NeedsBigProcessLock::No) \
S(sigsuspend, NeedsBigProcessLock::Yes) \
S(sigsuspend, NeedsBigProcessLock::No) \
S(sigtimedwait, NeedsBigProcessLock::Yes) \
S(socket, NeedsBigProcessLock::No) \
S(socketpair, NeedsBigProcessLock::No) \