Skip to content
Snippets Groups Projects
Commit 9fddba68 authored by bunnei's avatar bunnei
Browse files

APT_U: added a debug log on calling GetLockHandle

parent 481d936d
No related branches found
No related tags found
No related merge requests found
......@@ -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[] = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment