Changeset 46420 in vbox for trunk/include
- Timestamp:
- Jun 6, 2013 4:27:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r46267 r46420 531 531 */ 532 532 #define VM_FF_IS_SET(pVM, fFlag) (((pVM)->fGlobalForcedActions & (fFlag)) == (fFlag)) 533 /** @deprecated */ 534 #define VM_FF_ISSET(pVM, fFlag) VM_FF_IS_SET(pVM, fFlag) 535 536 /** @def VMCPU_FF_ISSET 533 534 /** @def VMCPU_FF_IS_SET 537 535 * Checks if a force action flag is set for the given VCPU. 538 536 * … … 541 539 */ 542 540 #define VMCPU_FF_IS_SET(pVCpu, fFlag) (((pVCpu)->fLocalForcedActions & (fFlag)) == (fFlag)) 543 /** @deprecated */544 #define VMCPU_FF_ISSET(pVCpu, fFlag) VMCPU_FF_IS_SET(pVCpu, fFlag)545 541 546 542 /** @def VM_FF_ISPENDING … … 551 547 */ 552 548 #define VM_FF_IS_PENDING(pVM, fFlags) ((pVM)->fGlobalForcedActions & (fFlags)) 553 /** @deprecated */554 #define VM_FF_ISPENDING(pVM, fFlags) VM_FF_IS_PENDING(pVM, fFlags)555 549 556 550 /** @def VM_FF_TESTANDCLEAR … … 563 557 */ 564 558 #define VM_FF_TEST_AND_CLEAR(pVM, iBit) (ASMAtomicBitTestAndClear(&(pVM)->fGlobalForcedActions, iBit##_BIT)) 565 /** @deprecated */566 #define VM_FF_TESTANDCLEAR(pVM, iBit) (ASMAtomicBitTestAndClear(&(pVM)->fGlobalForcedActions, iBit##_BIT))567 559 568 560 /** @def VMCPU_FF_TESTANDCLEAR … … 575 567 */ 576 568 #define VMCPU_FF_TEST_AND_CLEAR(pVCpu, iBit) (ASMAtomicBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT)) 577 /** @deprecated */578 #define VMCPU_FF_TESTANDCLEAR(pVCpu, iBit) (ASMAtomicBitTestAndClear(&(pVCpu)->fLocalForcedActions, iBit##_BIT))579 569 580 570 /** @def VMCPU_FF_ISPENDING … … 585 575 */ 586 576 #define VMCPU_FF_IS_PENDING(pVCpu, fFlags) ((pVCpu)->fLocalForcedActions & (fFlags)) 587 /** @deprecated */588 #define VMCPU_FF_ISPENDING(pVCpu, fFlags) VMCPU_FF_IS_PENDING(pVCpu, fFlags)589 577 590 578 /** @def VM_FF_ISPENDING
Note:
See TracChangeset
for help on using the changeset viewer.