mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Kernel: Add a bit more thread info on crash.
This commit is contained in:
parent
daf0990692
commit
04c15c82c9
1 changed files with 2 additions and 1 deletions
|
@ -1183,7 +1183,8 @@ void __KernelThreadingShutdown() {
|
|||
}
|
||||
|
||||
std::string __KernelThreadingSummary() {
|
||||
return StringFromFormat("Cur thread: %s", __GetCurrentThread()->GetName());
|
||||
PSPThread *t = __GetCurrentThread();
|
||||
return StringFromFormat("Cur thread: %s (attr %08x)", t ? t->GetName() : "(null)", t ? t->nt.attr : 0);
|
||||
}
|
||||
|
||||
const char *__KernelGetThreadName(SceUID threadID)
|
||||
|
|
Loading…
Add table
Reference in a new issue