1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

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

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

View file

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