- Timestamp:
- Sep 22, 2009 2:22:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hwacc_svm.h
r23217 r23218 258 258 */ 259 259 /** Set to 1 if the task switch was caused by an IRET; else cleared to 0. */ 260 #define SVM_EXIT2_TASK_SWITCH_IRET RT_BIT 64(36)260 #define SVM_EXIT2_TASK_SWITCH_IRET RT_BIT_64(36) 261 261 /** Set to 1 if the task switch was caused by a far jump; else cleared to 0. */ 262 #define SVM_EXIT2_TASK_SWITCH_JMP RT_BIT 64(38)262 #define SVM_EXIT2_TASK_SWITCH_JMP RT_BIT_64(38) 263 263 /** Set to 1 if the task switch has an error code; else cleared to 0. */ 264 #define SVM_EXIT2_TASK_SWITCH_HAS_ERROR_CODE RT_BIT 64(44)264 #define SVM_EXIT2_TASK_SWITCH_HAS_ERROR_CODE RT_BIT_64(44) 265 265 /** The value of EFLAGS.RF that would be saved in the outgoing TSS if the task switch were not intercepted. */ 266 #define SVM_EXIT2_TASK_SWITCH_EFLAGS_RF RT_BIT 64(48)266 #define SVM_EXIT2_TASK_SWITCH_EFLAGS_RF RT_BIT_64(48) 267 267 /** @} */ 268 268
Note:
See TracChangeset
for help on using the changeset viewer.