Kernel+LibC: Add posix_fallocate syscall

This commit is contained in:
Hendiadyoin1 2022-06-18 18:37:54 +02:00 committed by Andreas Kling
commit d783389877
Notes: sideshowbarker 2024-07-17 08:54:14 +09:00
6 changed files with 70 additions and 0 deletions

View file

@ -128,6 +128,7 @@ enum class NeedsBigProcessLock {
S(pipe, NeedsBigProcessLock::Yes) \
S(pledge, NeedsBigProcessLock::Yes) \
S(poll, NeedsBigProcessLock::Yes) \
S(posix_fallocate, NeedsBigProcessLock::No) \
S(prctl, NeedsBigProcessLock::Yes) \
S(profiling_disable, NeedsBigProcessLock::Yes) \
S(profiling_enable, NeedsBigProcessLock::Yes) \