Changeset 61532 in vbox
- Timestamp:
- Jun 7, 2016 11:47:32 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107869
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgfcorefmt.h
r58106 r61532 49 49 #define DBGFCORE_MAGIC UINT32_C(0xc01ac0de) 50 50 /** DBGCORECOREDESCRIPTOR::u32FmtVersion. */ 51 #define DBGFCORE_FMT_VERSION UINT32_C(0x0001000 3)51 #define DBGFCORE_FMT_VERSION UINT32_C(0x00010004) 52 52 53 53 /** … … 101 101 uint64_t rsp; 102 102 uint64_t rbp; 103 uint64_t rflags; 103 104 DBGFCORESEL cs; 104 105 DBGFCORESEL ds; -
trunk/src/VBox/VMM/VMMR3/DBGFCoreWrite.cpp
r58126 r61532 345 345 pDbgfCpu->rsp = pCtx->rsp; 346 346 pDbgfCpu->rbp = pCtx->rbp; 347 pDbgfCpu->rflags = pCtx->rflags.u; 347 348 DBGFCOPYSEL(pDbgfCpu->cs, pCtx->cs); 348 349 DBGFCOPYSEL(pDbgfCpu->ds, pCtx->ds);
Note:
See TracChangeset
for help on using the changeset viewer.