Get cpu data too

This commit is contained in:
Alex 2022-11-16 16:02:17 +02:00
parent 89f5d29135
commit 01e892a8be
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
2 changed files with 2 additions and 0 deletions

View File

@ -436,6 +436,7 @@ namespace CrashHandler
if (cpudata != nullptr)
{
crashdata.ID = cpudata->ID;
crashdata.CPUData = cpudata;
error("Technical Informations on CPU %lld:", cpudata->ID);
}

View File

@ -24,6 +24,7 @@ struct CRData
CPU::x64::DR7 dr7;
long ID;
void *CPUData;
Tasking::PCB *Process;
Tasking::TCB *Thread;
};