1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:14:58 +00:00

Kernel: Mark sys$create_thread as not needing the big process lock

Now that the master TLS region is spinlock protected, this syscall does
not access any big process lock protected resources.
This commit is contained in:
Idan Horowitz 2023-12-16 12:59:48 +02:00 committed by Andreas Kling
parent 6a4b93b3e0
commit b49a0e2c61
2 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ enum class NeedsBigProcessLock {
S(close, NeedsBigProcessLock::No) \
S(connect, NeedsBigProcessLock::No) \
S(create_inode_watcher, NeedsBigProcessLock::No) \
S(create_thread, NeedsBigProcessLock::Yes) \
S(create_thread, NeedsBigProcessLock::No) \
S(dbgputstr, NeedsBigProcessLock::No) \
S(detach_thread, NeedsBigProcessLock::Yes) \
S(disown, NeedsBigProcessLock::No) \