mutex: Remove spamming log

This commit is contained in:
TheTurtle 2024-10-28 01:05:40 +02:00 committed by IndecisiveTurtle
parent c9063a644e
commit 8029325b3e

View file

@ -160,7 +160,6 @@ int PthreadMutex::SelfLock(const OrbisKernelTimespec* abstime, u64 usec) {
* POSIX specifies that mutexes should return * POSIX specifies that mutexes should return
* EDEADLK if a recursive lock is detected. * EDEADLK if a recursive lock is detected.
*/ */
LOG_ERROR(Lib_Kernel, "Mutex deadlock possibly occured");
return POSIX_EDEADLK; return POSIX_EDEADLK;
} }
case PthreadMutexType::Normal: { case PthreadMutexType::Normal: {