diff options
author | Nico Weber <thakis@chromium.org> | 2021-09-30 19:48:31 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-01 00:51:49 +0100 |
commit | 5a951d62580820def21bfe21d7f95768cfa09ccd (patch) | |
tree | 7ec1004bc83e8241c873b6ae48c33a6b6ed4d5d3 /Kernel/Memory/MemoryManager.cpp | |
parent | 890d5e45ee7faac9881d9340533261a30eb001f9 (diff) | |
download | serenity-5a951d62580820def21bfe21d7f95768cfa09ccd.zip |
Kernel: Fix a few typos
Diffstat (limited to 'Kernel/Memory/MemoryManager.cpp')
-rw-r--r-- | Kernel/Memory/MemoryManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Memory/MemoryManager.cpp b/Kernel/Memory/MemoryManager.cpp index dcf90d571b..764fd0b887 100644 --- a/Kernel/Memory/MemoryManager.cpp +++ b/Kernel/Memory/MemoryManager.cpp @@ -638,7 +638,7 @@ Region* MemoryManager::find_user_region_from_vaddr(AddressSpace& space, VirtualA void MemoryManager::validate_syscall_preconditions(AddressSpace& space, RegisterState const& regs) { // We take the space lock once here and then use the no_lock variants - // to avoid excessive spinlock recursion in this extemely common path. + // to avoid excessive spinlock recursion in this extremely common path. SpinlockLocker lock(space.get_lock()); auto unlock_and_handle_crash = [&lock, ®s](const char* description, int signal) { |