Changeset 73322 in vbox for trunk/include/VBox
- Timestamp:
- Jul 23, 2018 2:04:59 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123931
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm.h
r73266 r73322 60 60 61 61 /** 62 * Checks whether raw-mode context is required for any purpose. 63 * 64 * @retval true if required either by raw-mode itself or by HM for doing 65 * switching the cpu to 64-bit mode. 66 * @retval false if not required. 62 * Checks whether raw-mode context is required for HM purposes 63 * 64 * @retval true if required by HM for doing switching the cpu to 64-bit mode. 65 * @retval false if not required by HM. 67 66 * 68 67 * @param a_pVM The cross context VM structure. … … 70 69 */ 71 70 #if HC_ARCH_BITS == 64 72 # define HMIsRawModeCtxNeeded(a_pVM) ( !HMIsEnabled(a_pVM))73 #else 74 # define HMIsRawModeCtxNeeded(a_pVM) ( !HMIsEnabled(a_pVM) ||(a_pVM)->fHMNeedRawModeCtx)71 # define HMIsRawModeCtxNeeded(a_pVM) (false) 72 #else 73 # define HMIsRawModeCtxNeeded(a_pVM) ((a_pVM)->fHMNeedRawModeCtx) 75 74 #endif 76 75
Note:
See TracChangeset
for help on using the changeset viewer.