- Timestamp:
- May 12, 2009 2:43:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r19478 r19633 1414 1414 const char *pszComment; 1415 1415 cpumR3InfoParseArg(pszArgs, &enmType, &pszComment); 1416 pHlp->pfnPrintf(pHlp, "Guest CPUM state: %s\n", pszComment);1417 1416 1418 1417 /* @todo SMP support! */ 1419 PVMCPU pVCpu = &pVM->aCpus[0]; 1418 PVMCPU pVCpu = VMMGetCpu(pVM); 1419 if (!pVCpu) 1420 pVCpu = &pVM->aCpus[0]; 1421 1422 pHlp->pfnPrintf(pHlp, "Guest CPUM (VCPU %d) state: %s\n", pVCpu->idCpu, pszComment); 1423 1420 1424 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu); 1421 1425 cpumR3InfoOne(pVM, pCtx, CPUMCTX2CORE(pCtx), pHlp, enmType, "");
Note:
See TracChangeset
for help on using the changeset viewer.