VirtualBox

Changeset 46420 in vbox for trunk/include


Ignore:
Timestamp:
Jun 6, 2013 4:27:25 PM (12 years ago)
Author:
vboxsync
Message:

VMM, recompiler: Purge deprecated macros.

File:
1 edited

Legend:

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

    r46267 r46420  
    531531 */
    532532#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
    537535 * Checks if a force action flag is set for the given VCPU.
    538536 *
     
    541539 */
    542540#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)
    545541
    546542/** @def VM_FF_ISPENDING
     
    551547 */
    552548#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)
    555549
    556550/** @def VM_FF_TESTANDCLEAR
     
    563557 */
    564558#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))
    567559
    568560/** @def VMCPU_FF_TESTANDCLEAR
     
    575567 */
    576568#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))
    579569
    580570/** @def VMCPU_FF_ISPENDING
     
    585575 */
    586576#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)
    589577
    590578/** @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