Changeset 21144 in vbox for trunk/include
- Timestamp:
- Jul 2, 2009 8:07:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r21021 r21144 478 478 * @param iBit Bit position to check and clear 479 479 */ 480 #define VM_FF_TESTANDCLEAR(pVM, iBit) (ASMBitTestAndClear(&(pVM)->fGlobalForcedActions, iBit ))480 #define VM_FF_TESTANDCLEAR(pVM, iBit) (ASMBitTestAndClear(&(pVM)->fGlobalForcedActions, iBit##_BIT)) 481 481 482 482 /** @def VMCPU_FF_TESTANDCLEAR … … 488 488 * @param iBit Bit position to check and clear 489 489 */ 490 #define VMCPU_FF_TESTANDCLEAR(pVCpu, iBit) (ASMBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit ))490 #define VMCPU_FF_TESTANDCLEAR(pVCpu, iBit) (ASMBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT)) 491 491 492 492 /** @def VMCPU_FF_ISPENDING
Note:
See TracChangeset
for help on using the changeset viewer.