Changeset 38378 in vbox for trunk/include/VBox/vmm/em.h
- Timestamp:
- Aug 9, 2011 1:37:41 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/em.h
r38349 r38378 140 140 * @param pVM The VM to operate on. 141 141 */ 142 #define EMIsHwVirtExecutionEnabled(pVM) (!(pVM)->fRecompileSupervisor && !(pVM)->fRecompileSupervisor) 142 #define EMIsHwVirtExecutionEnabled(pVM) (!(pVM)->fRecompileSupervisor && !(pVM)->fRecompileUser) 143 144 /** 145 * Checks if execution of supervisor code should be done in the 146 * recompiler or not. 147 * 148 * @returns true if enabled. 149 * @returns false if disabled. 150 * @param pVM The VM to operate on. 151 */ 152 #define EMIsSupervisorCodeRecompiled(pVM) ((pVM)->fRecompileSupervisor) 143 153 144 154 VMMDECL(void) EMSetInhibitInterruptsPC(PVMCPU pVCpu, RTGCUINTPTR PC);
Note:
See TracChangeset
for help on using the changeset viewer.