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

Kernel: Disable big process lock for sys$uname()

This commit is contained in:
Brian Gianforcaro 2021-07-18 11:27:41 -07:00 committed by Gunnar Beutner
parent 10ce896d4f
commit bfd4635274
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ namespace Kernel {
KResultOr<FlatPtr> Process::sys$uname(Userspace<utsname*> user_buf)
{
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
VERIFY_NO_PROCESS_BIG_LOCK(this)
extern String* g_hostname;
extern Mutex* g_hostname_lock;