Changeset 45485 in vbox for trunk/include/VBox/vmm/em.h
- Timestamp:
- Apr 11, 2013 2:46:04 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/em.h
r45276 r45485 122 122 * @param pVM The VM to operate on. 123 123 */ 124 #define EMIsRawRing3Enabled(pVM) (!(pVM)->fRecompileUser)124 #define EMIsRawRing3Enabled(pVM) (!(pVM)->fRecompileUser) 125 125 126 126 /** … … 131 131 * @param pVM The VM to operate on. 132 132 */ 133 #define EMIsRawRing0Enabled(pVM) (!(pVM)->fRecompileSupervisor)133 #define EMIsRawRing0Enabled(pVM) (!(pVM)->fRecompileSupervisor) 134 134 135 135 #ifdef VBOX_WITH_RAW_RING1 … … 141 141 * @param pVM The VM to operate on. 142 142 */ 143 # define EMIsRawRing1Enabled(pVM)((pVM)->fRawRing1Enabled)143 # define EMIsRawRing1Enabled(pVM) ((pVM)->fRawRing1Enabled) 144 144 #else 145 # define EMIsRawRing1Enabled(pVM)false145 # define EMIsRawRing1Enabled(pVM) false 146 146 #endif 147 147 … … 153 153 * @param pVM The VM to operate on. 154 154 */ 155 #define EMIsHwVirtExecutionEnabled(pVM) (!(pVM)->fRecompileSupervisor && !(pVM)->fRecompileUser)155 #define EMIsHwVirtExecutionEnabled(pVM) (!(pVM)->fRecompileSupervisor && !(pVM)->fRecompileUser) 156 156 157 157 /**
Note:
See TracChangeset
for help on using the changeset viewer.