VirtualBox

Changeset 74783 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Oct 12, 2018 9:37:50 AM (6 years ago)
Author:
vboxsync
Message:

vm.h: VMCPU_FF_IS_PENDING_EXCEPT does not seem to be used, so drop it. bugref:9180

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm/vm.h

    r74436 r74783  
    725725 * @param   fExcpt  The flags that should not be set.
    726726 */
    727 #define VM_FF_IS_PENDING_EXCEPT(pVM, fFlags, fExcpt)            ( ((pVM)->fGlobalForcedActions & (fFlags)) && !((pVM)->fGlobalForcedActions & (fExcpt)) )
    728 
    729 /** @def VMCPU_FF_IS_PENDING_EXCEPT
    730  * Checks if one or more force action in the specified set is pending for the given
    731  * VCPU while one or more other ones are not.
    732  *
    733  * @param   pVCpu   The cross context virtual CPU structure.
    734  * @param   fFlags  The flags to check for.
    735  * @param   fExcpt  The flags that should not be set.
    736  */
    737 #define VMCPU_FF_IS_PENDING_EXCEPT(pVCpu, fFlags, fExcpt) ( ((pVCpu)->fLocalForcedActions & (fFlags)) && !((pVCpu)->fLocalForcedActions & (fExcpt)) )
     727#define VM_FF_IS_PENDING_EXCEPT(pVM, fFlags, fExcpt)      ( ((pVM)->fGlobalForcedActions & (fFlags)) && !((pVM)->fGlobalForcedActions & (fExcpt)) )
    738728
    739729/** @def VM_IS_EMT
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette