VirtualBox

Changeset 46833 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jun 27, 2013 12:17:35 PM (11 years ago)
Author:
vboxsync
Message:

build fixes

File:
1 edited

Legend:

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

    r46420 r46833  
    499499 * @param   fFlag   The flag to set.
    500500 */
    501 #define VMCPU_FF_SET(pVCpu, fFlag)    ASMAtomicOrU32(&(pVCpu)->fLocalForcedActions, (fFlag))
     501#define VMCPU_FF_SET(pVCpu, fFlag)          ASMAtomicOrU32(&(pVCpu)->fLocalForcedActions, (fFlag))
    502502
    503503/** @def VM_FF_CLEAR
     
    522522 * @param   fFlag   The flag to clear.
    523523 */
    524 #define VMCPU_FF_CLEAR(pVCpu, fFlag)  ASMAtomicAndU32(&(pVCpu)->fLocalForcedActions, ~(fFlag))
     524#define VMCPU_FF_CLEAR(pVCpu, fFlag)        ASMAtomicAndU32(&(pVCpu)->fLocalForcedActions, ~(fFlag))
    525525
    526526/** @def VM_FF_ISSET
     
    546546 * @param   fFlags  The flags to check for.
    547547 */
    548 #define VM_FF_IS_PENDING(pVM, fFlags)       ((pVM)->fGlobalForcedActions & (fFlags))
     548#define VM_FF_IS_PENDING(pVM, fFlags)       RT_BOOL((pVM)->fGlobalForcedActions & (fFlags))
    549549
    550550/** @def VM_FF_TESTANDCLEAR
     
    574574 * @param   fFlags  The flags to check for.
    575575 */
    576 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags)  ((pVCpu)->fLocalForcedActions & (fFlags))
     576#define VMCPU_FF_IS_PENDING(pVCpu, fFlags)  RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags))
    577577
    578578/** @def VM_FF_ISPENDING
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