Changeset 72880 in vbox
- Timestamp:
- Jul 4, 2018 3:11:47 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123425
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpumctx.h
r72643 r72880 921 921 /** All CPUM state bits, not including keeper specific ones. */ 922 922 #define CPUMCTX_EXTRN_ALL UINT64_C(0x000003fffffffffc) 923 /** All CPUM state bits, including keeper specific ones. */ 924 #define CPUMCTX_EXTRN_ABSOLUTELY_ALL UINT64_C(0xfffffffffffffffc) 923 925 /** @} */ 924 926 -
trunk/src/VBox/VMM/VMMR3/VMMGuruMeditation.cpp
r72610 r72880 311 311 */ 312 312 bool fDoneHyper = false; 313 bool fDoneImport = false; 313 314 switch (rcErr) 314 315 { … … 704 705 case VERR_EM_GUEST_CPU_HANG: 705 706 { 707 CPUMImportGuestStateOnDemand(pVCpu, CPUMCTX_EXTRN_ABSOLUTELY_ALL); 708 fDoneImport = true; 709 706 710 DBGFR3Info(pVM->pUVM, "cpumguest", NULL, pHlp); 707 711 DBGFR3Info(pVM->pUVM, "cpumguestinstr", NULL, pHlp); … … 722 726 * Generic info dumper loop. 723 727 */ 728 if (!fDoneImport) 729 CPUMImportGuestStateOnDemand(pVCpu, CPUMCTX_EXTRN_ABSOLUTELY_ALL); 724 730 static struct 725 731 {
Note:
See TracChangeset
for help on using the changeset viewer.