Kernel: Fix a typo in LockRank::Process's comment

This commit is contained in:
Idan Horowitz 2021-09-07 23:13:14 +03:00
parent 2572f5ebec
commit 7bb3b2839e
Notes: sideshowbarker 2024-07-18 04:26:06 +09:00

View file

@ -31,7 +31,7 @@ enum class LockRank : int {
Thread = 0x008,
// Process locks are the lowest rank, as they normally are taken
// Process locks are the highest rank, as they normally are taken
// first thing when processing syscalls.
Process = 0x010,
};