Changeset 72983 in vbox for trunk/src/VBox/VMM/VMMR0/HMR0.cpp
- Timestamp:
- Jul 8, 2018 4:15:47 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r72967 r72983 165 165 * actions when the host is being suspended to speed up the suspending and 166 166 * avoid trouble. */ 167 volatile boolfSuspended;167 bool volatile fSuspended; 168 168 169 169 /** Whether we've already initialized all CPUs. … … 1961 1961 * 1962 1962 * @param pVCpu The cross context virtual CPU structure. 1963 * @param pCtx Pointer to the CPU context. 1964 */ 1965 VMMR0_INT_DECL(void) hmR0DumpRegs(PVMCPU pVCpu, PCPUMCTX pCtx) 1963 */ 1964 VMMR0_INT_DECL(void) hmR0DumpRegs(PVMCPU pVCpu) 1966 1965 { 1967 1966 /* … … 1991 1990 char szEFlags[80]; 1992 1991 char *psz = szEFlags; 1992 PCCPUMCTX pCtx = &pVCpu->cpum.GstCtx; 1993 1993 uint32_t uEFlags = pCtx->eflags.u32; 1994 1994 for (unsigned i = 0; i < RT_ELEMENTS(s_aFlags); i++)
Note:
See TracChangeset
for help on using the changeset viewer.