mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-05 23:59:49 +00:00
Kernel: Mark sys$madvise as not needing the big lock
All accesses to shared mutable data are already serialized behind the process address space spinlock.
This commit is contained in:
parent
cb62ffbb8a
commit
0e564240a6
Notes:
sideshowbarker
2024-07-17 01:46:43 +09:00
Author: https://github.com/IdanHo
Commit: 0e564240a6
Pull-request: https://github.com/SerenityOS/serenity/pull/18178
Reviewed-by: https://github.com/awesomekling ✅
2 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ enum class NeedsBigProcessLock {
|
|||
S(link, NeedsBigProcessLock::No) \
|
||||
S(listen, NeedsBigProcessLock::No) \
|
||||
S(lseek, NeedsBigProcessLock::No) \
|
||||
S(madvise, NeedsBigProcessLock::Yes) \
|
||||
S(madvise, NeedsBigProcessLock::No) \
|
||||
S(map_time_page, NeedsBigProcessLock::Yes) \
|
||||
S(mkdir, NeedsBigProcessLock::No) \
|
||||
S(mknod, NeedsBigProcessLock::No) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue