mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00
Kernel: Mark sys$sigreturn as not needing the big lock
This syscall is only concerned with the current thread (except in the case of a pledge violation, when it will add some details about that to the process coredump metadata. That stuff is already serialized.)
This commit is contained in:
parent
a7212a7488
commit
374f4aeab9
2 changed files with 3 additions and 3 deletions
|
@ -178,7 +178,7 @@ enum class NeedsBigProcessLock {
|
|||
S(sigaltstack, NeedsBigProcessLock::Yes) \
|
||||
S(sigpending, NeedsBigProcessLock::Yes) \
|
||||
S(sigprocmask, NeedsBigProcessLock::Yes) \
|
||||
S(sigreturn, NeedsBigProcessLock::Yes) \
|
||||
S(sigreturn, NeedsBigProcessLock::No) \
|
||||
S(sigsuspend, NeedsBigProcessLock::Yes) \
|
||||
S(sigtimedwait, NeedsBigProcessLock::Yes) \
|
||||
S(socket, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue