1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 06:24:58 +00:00

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

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,
};