Changeset 46833 in vbox for trunk/include/VBox
- Timestamp:
- Jun 27, 2013 12:17:35 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r46420 r46833 499 499 * @param fFlag The flag to set. 500 500 */ 501 #define VMCPU_FF_SET(pVCpu, fFlag) ASMAtomicOrU32(&(pVCpu)->fLocalForcedActions, (fFlag))501 #define VMCPU_FF_SET(pVCpu, fFlag) ASMAtomicOrU32(&(pVCpu)->fLocalForcedActions, (fFlag)) 502 502 503 503 /** @def VM_FF_CLEAR … … 522 522 * @param fFlag The flag to clear. 523 523 */ 524 #define VMCPU_FF_CLEAR(pVCpu, fFlag) ASMAtomicAndU32(&(pVCpu)->fLocalForcedActions, ~(fFlag))524 #define VMCPU_FF_CLEAR(pVCpu, fFlag) ASMAtomicAndU32(&(pVCpu)->fLocalForcedActions, ~(fFlag)) 525 525 526 526 /** @def VM_FF_ISSET … … 546 546 * @param fFlags The flags to check for. 547 547 */ 548 #define VM_FF_IS_PENDING(pVM, fFlags) ((pVM)->fGlobalForcedActions & (fFlags))548 #define VM_FF_IS_PENDING(pVM, fFlags) RT_BOOL((pVM)->fGlobalForcedActions & (fFlags)) 549 549 550 550 /** @def VM_FF_TESTANDCLEAR … … 574 574 * @param fFlags The flags to check for. 575 575 */ 576 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags) ((pVCpu)->fLocalForcedActions & (fFlags))576 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags) RT_BOOL((pVCpu)->fLocalForcedActions & (fFlags)) 577 577 578 578 /** @def VM_FF_ISPENDING
Note:
See TracChangeset
for help on using the changeset viewer.