VirtualBox

Changeset 48558 in vbox


Ignore:
Timestamp:
Sep 19, 2013 6:04:17 PM (11 years ago)
Author:
vboxsync
Message:

More doxygen fixes.

File:
1 edited

Legend:

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

    r48557 r48558  
    537537#define VMCPU_FF_CLEAR(pVCpu, fFlag)        ASMAtomicAndU32(&(pVCpu)->fLocalForcedActions, ~(fFlag))
    538538
    539 /** @def VM_FF_ISSET
     539/** @def VM_FF_IS_SET
    540540 * Checks if a force action flag is set.
    541541 *
     
    553553#define VMCPU_FF_IS_SET(pVCpu, fFlag)       (((pVCpu)->fLocalForcedActions & (fFlag)) == (fFlag))
    554554
    555 /** @def VM_FF_ISPENDING
     555/** @def VM_FF_IS_PENDING
    556556 * Checks if one or more force action in the specified set is pending.
    557557 *
     
    581581#define VMCPU_FF_TEST_AND_CLEAR(pVCpu, iBit) (ASMAtomicBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT))
    582582
    583 /** @def VMCPU_FF_ISPENDING
     583/** @def VMCPU_FF_IS_PENDING
    584584 * Checks if one or more force action in the specified set is pending for the given VCPU.
    585585 *
     
    589589#define VMCPU_FF_IS_PENDING(pVCpu, fFlags)  RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags))
    590590
    591 /** @def VM_FF_ISPENDING
     591/** @def VM_FF_IS_PENDING_EXCEPT
    592592 * Checks if one or more force action in the specified set is pending while one
    593593 * or more other ones are not.
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