mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +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:
parent
374f4aeab9
commit
d1fae8b09c
2 changed files with 2 additions and 2 deletions
|
@ -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) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue