mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-06-06 07:55:05 -06:00
Additional logging
This commit is contained in:
parent
d5d0301702
commit
e47d9af750
@ -220,12 +220,15 @@ void Module::Interface::ScanAPs(Kernel::HLERequestContext& ctx) {
|
|||||||
cmd_buf[18] = (size << 4) | 12; // should be considered correct for mapped buffer
|
cmd_buf[18] = (size << 4) | 12; // should be considered correct for mapped buffer
|
||||||
cmd_buf[19] = 0; // if i interpreted the code correctly, this value won't matter
|
cmd_buf[19] = 0; // if i interpreted the code correctly, this value won't matter
|
||||||
|
|
||||||
|
LOG_WARNING(Service_AC, "Finished setting up command buffer");
|
||||||
std::shared_ptr<Kernel::Thread> thread = ctx.ClientThread();
|
std::shared_ptr<Kernel::Thread> thread = ctx.ClientThread();
|
||||||
auto current_process = thread->owner_process.lock();
|
auto current_process = thread->owner_process.lock();
|
||||||
|
LOG_WARNING(Service_AC, "Retrieved thread and process");
|
||||||
|
|
||||||
auto context =
|
auto context =
|
||||||
std::make_shared<Kernel::HLERequestContext>(Core::System::GetInstance().Kernel(),
|
std::make_shared<Kernel::HLERequestContext>(Core::System::GetInstance().Kernel(),
|
||||||
ctx.Session(), thread);
|
ctx.Session(), thread);
|
||||||
|
LOG_WARNING(Service_AC, "Created context");
|
||||||
context->PopulateFromIncomingCommandBuffer(cmd_buf.data(), current_process);
|
context->PopulateFromIncomingCommandBuffer(cmd_buf.data(), current_process);
|
||||||
|
|
||||||
LOG_WARNING(Service_AC, "Finished setting up context");
|
LOG_WARNING(Service_AC, "Finished setting up context");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user