VirtualBox

Ignore:
Timestamp:
Feb 16, 2021 11:40:35 PM (4 years ago)
Author:
vboxsync
Message:

VMM/TM: Removed pVMR3, pVMR0 and pVMRC from TMTIMER. [build fix] bugref:9943

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/include/TMInline.h

    r87766 r87774  
    2626 * Used to unlink a timer from the active list.
    2727 *
     28 * @param   pVM         The cross context VM structure.
    2829 * @param   pQueue      The timer queue.
    2930 * @param   pTimer      The timer that needs linking.
     
    3132 * @remarks Called while owning the relevant queue lock.
    3233 */
    33 DECL_FORCE_INLINE(void) tmTimerQueueUnlinkActive(PTMTIMERQUEUE pQueue, PTMTIMER pTimer)
     34DECL_FORCE_INLINE(void) tmTimerQueueUnlinkActive(PVMCC pVM, PTMTIMERQUEUE pQueue, PTMTIMER pTimer)
    3435{
    3536#ifdef VBOX_STRICT
     
    3940           : enmState == TMTIMERSTATE_PENDING_SCHEDULE || enmState == TMTIMERSTATE_PENDING_STOP_SCHEDULE);
    4041#endif
     42    RT_NOREF(pVM);
    4143
    4244    const PTMTIMER pPrev = TMTIMER_GET_PREV(pTimer);
     
    4850        TMTIMER_SET_HEAD(pQueue, pNext);
    4951        pQueue->u64Expire = pNext ? pNext->u64Expire : INT64_MAX;
    50         DBGFTRACE_U64_TAG(pTimer->CTX_SUFF(pVM), pQueue->u64Expire, "tmTimerQueueUnlinkActive");
     52        DBGFTRACE_U64_TAG(pVM, pQueue->u64Expire, "tmTimerQueueUnlinkActive");
    5153    }
    5254    if (pNext)
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