diff options
Diffstat (limited to 'Kernel/Syscalls/sysconf.cpp')
-rw-r--r-- | Kernel/Syscalls/sysconf.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Syscalls/sysconf.cpp b/Kernel/Syscalls/sysconf.cpp index 2a6dae7b52..932d4ae4e3 100644 --- a/Kernel/Syscalls/sysconf.cpp +++ b/Kernel/Syscalls/sysconf.cpp @@ -11,6 +11,7 @@ namespace Kernel { KResultOr<FlatPtr> Process::sys$sysconf(int name) { + VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this) switch (name) { case _SC_MONOTONIC_CLOCK: return 1; |