kern/sm: fix debug port output

This commit is contained in:
Michael Scire 2020-12-10 04:06:02 -08:00
parent 7519d17941
commit 247bade76a

View File

@ -181,11 +181,13 @@ namespace ams::kern::KDumpObject {
}
}
}
}
MESOSPHERE_RELEASE_LOG("%-9s: Handle %08x Obj=%p Cur=%3d Peak=%3d Max=%3d\n", name, handle, obj.GetPointerUnsafe(), client->GetNumSessions(), client->GetPeakSessions(), client->GetMaxSessions());
/* Identify any sessions. */
{
for (auto it = accessor.begin(); it != end && client_port_process.IsNull(); ++it) {
for (auto it = accessor.begin(); it != end; ++it) {
KProcess *cur = static_cast<KProcess *>(std::addressof(*it));
for (size_t j = 0; j < cur->GetHandleTable().GetMaxCount(); ++j) {
ams::svc::Handle cur_h = ams::svc::InvalidHandle;
@ -202,7 +204,6 @@ namespace ams::kern::KDumpObject {
}
}
}
}
}