Changeset 58125 in vbox for trunk/include/VBox/vmm/em.h
- Timestamp:
- Oct 8, 2015 6:39:27 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/em.h
r58124 r58125 126 126 * @returns true if enabled. 127 127 * @returns false if disabled. 128 * @param pV CpuThe cross context VM structure.128 * @param pVM The cross context VM structure. 129 129 */ 130 130 #define EMIsRawRing3Enabled(pVM) (!(pVM)->fRecompileUser) … … 135 135 * @returns true if enabled. 136 136 * @returns false if disabled. 137 * @param pV CpuThe cross context VM structure.137 * @param pVM The cross context VM structure. 138 138 */ 139 139 #define EMIsRawRing0Enabled(pVM) (!(pVM)->fRecompileSupervisor) … … 145 145 * @returns true if enabled. 146 146 * @returns false if disabled. 147 * @param pV CpuThe cross context VM structure.147 * @param pVM The cross context VM structure. 148 148 */ 149 149 # define EMIsRawRing1Enabled(pVM) ((pVM)->fRawRing1Enabled) … … 157 157 * @returns true if enabled. 158 158 * @returns false if disabled. 159 * @param pV CpuThe cross context VM structure.159 * @param pVM The cross context VM structure. 160 160 */ 161 161 #define EMIsHwVirtExecutionEnabled(pVM) (!(pVM)->fRecompileSupervisor && !(pVM)->fRecompileUser) … … 167 167 * @returns true if enabled. 168 168 * @returns false if disabled. 169 * @param pV CpuThe cross context VM structure.169 * @param pVM The cross context VM structure. 170 170 */ 171 171 #define EMIsSupervisorCodeRecompiled(pVM) ((pVM)->fRecompileSupervisor)
Note:
See TracChangeset
for help on using the changeset viewer.