1
Fork 0
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:
Liav A 2023-02-25 16:16:09 +02:00 committed by Linus Groh
parent 41980675f2
commit 8a50c967b8
2 changed files with 2 additions and 2 deletions

View file

@ -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) \