Kernel: Fix mutex try_lock return value

WHY IS GCC NOT COMPLAINING FROM HEADERS... I used almost 2 hours
trying to locate why AML was broken
This commit is contained in:
Bananymous 2024-04-17 00:53:25 +03:00
parent f97fb1b35d
commit f9943b60e4
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ namespace Kernel
ASSERT(m_lock_depth == 0);
}
m_lock_depth++;
return true;
}
void unlock()