1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:57:44 +00:00

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

Another one that only touches the current thread.
This commit is contained in:
Andreas Kling 2023-04-03 16:26:11 +02:00
parent e9fe0ecbae
commit f0b5c585f2
2 changed files with 2 additions and 2 deletions

View file

@ -176,7 +176,7 @@ enum class NeedsBigProcessLock {
S(shutdown, NeedsBigProcessLock::No) \
S(sigaction, NeedsBigProcessLock::Yes) \
S(sigaltstack, NeedsBigProcessLock::Yes) \
S(sigpending, NeedsBigProcessLock::Yes) \
S(sigpending, NeedsBigProcessLock::No) \
S(sigprocmask, NeedsBigProcessLock::No) \
S(sigreturn, NeedsBigProcessLock::No) \
S(sigsuspend, NeedsBigProcessLock::No) \