Changeset 74785 in vbox for trunk/include
- Timestamp:
- Oct 12, 2018 10:14:19 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 125729
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r74783 r74785 673 673 #define VM_FF_IS_SET(pVM, fFlag) (((pVM)->fGlobalForcedActions & (fFlag)) == (fFlag)) 674 674 675 675 676 /** @def VMCPU_FF_IS_SET 676 677 * Checks if a force action flag is set for the given VCPU. … … 679 680 * @param fFlag The flag to check. 680 681 */ 681 #define VMCPU_FF_IS_SET(pVCpu, fFlag) (((pVCpu)->fLocalForcedActions & (fFlag)) == (fFlag)) 682 #if !defined(VBOX_STRICT) || !defined(RT_COMPILER_SUPPORTS_LAMBDA) 683 # define VMCPU_FF_IS_SET(pVCpu, fFlag) (((pVCpu)->fLocalForcedActions & (fFlag)) == (fFlag)) 684 #else 685 # define VMCPU_FF_IS_SET(pVCpu, fFlag) \ 686 ([](PVMCPU a_pVCpu) -> bool \ 687 { \ 688 AssertCompile(RT_IS_POWER_OF_TWO(fFlag)); \ 689 return (a_pVCpu->fLocalForcedActions & (fFlag)) == (fFlag); \ 690 }(pVCpu)) 691 #endif 682 692 683 693 /** @def VM_FF_IS_PENDING … … 688 698 */ 689 699 #define VM_FF_IS_PENDING(pVM, fFlags) RT_BOOL((pVM)->fGlobalForcedActions & (fFlags)) 700 701 /** @def VMCPU_FF_IS_PENDING 702 * Checks if one or more force action in the specified set is pending for the given VCPU. 703 * 704 * @param pVCpu The cross context virtual CPU structure. 705 * @param fFlags The flags to check for. 706 */ 707 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags) RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags)) 690 708 691 709 /** @def VM_FF_TEST_AND_CLEAR … … 709 727 #define VMCPU_FF_TEST_AND_CLEAR(pVCpu, iBit) (ASMAtomicBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT)) 710 728 711 /** @def VMCPU_FF_IS_PENDING712 * Checks if one or more force action in the specified set is pending for the given VCPU.713 *714 * @param pVCpu The cross context virtual CPU structure.715 * @param fFlags The flags to check for.716 */717 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags) RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags))718 719 729 /** @def VM_FF_IS_PENDING_EXCEPT 720 730 * Checks if one or more force action in the specified set is pending while one … … 725 735 * @param fExcpt The flags that should not be set. 726 736 */ 727 #define VM_FF_IS_PENDING_EXCEPT(pVM, fFlags, fExcpt) 737 #define VM_FF_IS_PENDING_EXCEPT(pVM, fFlags, fExcpt) ( ((pVM)->fGlobalForcedActions & (fFlags)) && !((pVM)->fGlobalForcedActions & (fExcpt)) ) 728 738 729 739 /** @def VM_IS_EMT
Note:
See TracChangeset
for help on using the changeset viewer.