Skip to content

Commit

Permalink
kernel: Downgrade edeadlk to log
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelthegreat committed Oct 24, 2024
1 parent ed2da7a commit 3229b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/libraries/kernel/threads/mutex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ int PthreadMutex::SelfLock(const OrbisKernelTimespec* abstime, u64 usec) {
* POSIX specifies that mutexes should return
* EDEADLK if a recursive lock is detected.
*/
UNREACHABLE_MSG("Mutex deadlock occured");
LOG_ERROR(Lib_Kernel, "Mutex deadlock possibly occured");
return POSIX_EDEADLK;
}
case PthreadMutexType::Normal: {
Expand Down

0 comments on commit 3229b66

Please sign in to comment.