mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:08:11 +00:00
Kernel: Mark sys$prctl() as not needing the big lock
This syscall has sufficient locking and therefore it doesn't need the big lock being taken.
This commit is contained in:
parent
41980675f2
commit
8a50c967b8
2 changed files with 2 additions and 2 deletions
|
@ -136,7 +136,7 @@ enum class NeedsBigProcessLock {
|
|||
S(pledge, NeedsBigProcessLock::No) \
|
||||
S(poll, NeedsBigProcessLock::Yes) \
|
||||
S(posix_fallocate, NeedsBigProcessLock::No) \
|
||||
S(prctl, NeedsBigProcessLock::Yes) \
|
||||
S(prctl, NeedsBigProcessLock::No) \
|
||||
S(profiling_disable, NeedsBigProcessLock::Yes) \
|
||||
S(profiling_enable, NeedsBigProcessLock::Yes) \
|
||||
S(profiling_free_buffer, NeedsBigProcessLock::Yes) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue