- Timestamp:
- Feb 20, 2020 8:13:10 AM (5 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgfcorefmt.h
r82968 r83122 52 52 #define DBGFCORE_MAGIC UINT32_C(0xc01ac0de) 53 53 /** DBGCORECOREDESCRIPTOR::u32FmtVersion. */ 54 #define DBGFCORE_FMT_VERSION UINT32_C(0x0001000 5)54 #define DBGFCORE_FMT_VERSION UINT32_C(0x00010006) 55 55 56 56 /** … … 134 134 uint64_t msrKernelGSBase; 135 135 uint64_t msrApicBase; 136 uint64_t msrTscAux; 136 137 uint64_t aXcr[2]; 137 138 uint32_t cbExt; -
trunk/src/VBox/VMM/VMMR3/DBGFCoreWrite.cpp
r82968 r83122 377 377 pDbgfCpu->msrKernelGSBase = pCtx->msrKERNELGSBASE; 378 378 pDbgfCpu->msrApicBase = APICGetBaseMsrNoCheck(pVCpu); 379 pDbgfCpu->msrTscAux = CPUMGetGuestTscAux(pVCpu); 379 380 pDbgfCpu->aXcr[0] = pCtx->aXcr[0]; 380 381 pDbgfCpu->aXcr[1] = pCtx->aXcr[1];
Note:
See TracChangeset
for help on using the changeset viewer.