APT_U: added a debug log on calling GetLockHandle

This commit is contained in:
bunnei 2014-05-22 18:48:14 -04:00
parent 481d936d34
commit 9fddba6843
1 changed files with 1 additions and 0 deletions

View File

@ -23,6 +23,7 @@ void GetLockHandle(Service::Interface* self) {
u32 flags = cmd_buff[1]; // TODO(bunnei): Figure out the purpose of the flag field
cmd_buff[1] = 0; // No error
cmd_buff[5] = Kernel::CreateMutex(false);
DEBUG_LOG(KERNEL, "APT_U::GetLockHandle called : created handle 0x%08X", cmd_buff[5]);
}
const Interface::FunctionInfo FunctionTable[] = {