Changeset 48558 in vbox
- Timestamp:
- Sep 19, 2013 6:04:17 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r48557 r48558 537 537 #define VMCPU_FF_CLEAR(pVCpu, fFlag) ASMAtomicAndU32(&(pVCpu)->fLocalForcedActions, ~(fFlag)) 538 538 539 /** @def VM_FF_IS SET539 /** @def VM_FF_IS_SET 540 540 * Checks if a force action flag is set. 541 541 * … … 553 553 #define VMCPU_FF_IS_SET(pVCpu, fFlag) (((pVCpu)->fLocalForcedActions & (fFlag)) == (fFlag)) 554 554 555 /** @def VM_FF_IS PENDING555 /** @def VM_FF_IS_PENDING 556 556 * Checks if one or more force action in the specified set is pending. 557 557 * … … 581 581 #define VMCPU_FF_TEST_AND_CLEAR(pVCpu, iBit) (ASMAtomicBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT)) 582 582 583 /** @def VMCPU_FF_IS PENDING583 /** @def VMCPU_FF_IS_PENDING 584 584 * Checks if one or more force action in the specified set is pending for the given VCPU. 585 585 * … … 589 589 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags) RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags)) 590 590 591 /** @def VM_FF_IS PENDING591 /** @def VM_FF_IS_PENDING_EXCEPT 592 592 * Checks if one or more force action in the specified set is pending while one 593 593 * or more other ones are not.
Note:
See TracChangeset
for help on using the changeset viewer.