[Kernel] Add log to CreateMutex

This commit is contained in:
wheremyfoodat 2022-11-18 00:01:20 +02:00
parent 514ddf39bd
commit 70a492fa03

View file

@ -280,6 +280,7 @@ void Kernel::setThreadPriority() {
void Kernel::createMutex() {
bool locked = regs[1] != 0;
logSVC("CreateMutex (locked = %s)\n", locked ? "yes" : "no");
regs[0] = SVCResult::Success;
regs[1] = makeMutex(locked);