Changeset 36865 in vbox
- Timestamp:
- Apr 28, 2011 12:59:50 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstX86-1.cpp
r36864 r36865 104 104 # elif defined(RT_ARCH_AMD64) 105 105 uintptr_t *puPC = (uintptr_t *)&pCtx->uc_mcontext.gregs[REG_RIP]; 106 uintptr_t *puSP = &pCtx->uc_mcontext.gregs[REG_RSP];106 uintptr_t *puSP = (uintptr_t *)&pCtx->uc_mcontext.gregs[REG_RSP]; 107 107 uintptr_t uTrapNo = pCtx->uc_mcontext.gregs[REG_TRAPNO]; 108 108 uintptr_t uErr = pCtx->uc_mcontext.gregs[REG_ERR];
Note:
See TracChangeset
for help on using the changeset viewer.