1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

Kernel: Fix a few typos

This commit is contained in:
Nico Weber 2021-09-30 19:48:31 -04:00 committed by Linus Groh
parent 890d5e45ee
commit 5a951d6258
5 changed files with 6 additions and 6 deletions

View file

@ -13,7 +13,7 @@ namespace Kernel {
void Process::sys$exit(int status)
{
// FIXME: We have callers from kernel which don't aquire the big process lock.
// FIXME: We have callers from kernel which don't acquire the big process lock.
if (Thread::current()->previous_mode() == Thread::PreviousMode::UserMode) {
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this);
}