Changeset 46557 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Jun 14, 2013 12:47:59 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86421
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/hm_svm.h
r46551 r46557 259 259 /** MONITOR instruction. */ 260 260 #define SVM_EXIT_MONITOR 0x8A 261 /** MWAIT instruction uncond. */262 #define SVM_EXIT_MWAIT _UNCOND0x8B263 /** MWAIT instruction when armed. */261 /** MWAIT instruction. */ 262 #define SVM_EXIT_MWAIT 0x8B 263 /** MWAIT instruction, when armed. */ 264 264 #define SVM_EXIT_MWAIT_ARMED 0x8C 265 265 /** Nested paging: host-level page fault occurred (EXITINFO1 contains fault errorcode; EXITINFO2 contains the guest physical address causing the fault). */ … … 394 394 #define SVM_CTRL2_INTERCEPT_MONITOR RT_BIT(10) 395 395 /** 11 Intercept MWAIT instruction unconditionally. */ 396 #define SVM_CTRL2_INTERCEPT_MWAIT _UNCONDRT_BIT(11)396 #define SVM_CTRL2_INTERCEPT_MWAIT RT_BIT(11) 397 397 /** 12 Intercept MWAIT instruction when armed. */ 398 398 #define SVM_CTRL2_INTERCEPT_MWAIT_ARMED RT_BIT(12)
Note:
See TracChangeset
for help on using the changeset viewer.