VirtualBox

Changeset 78434 in vbox


Ignore:
Timestamp:
May 7, 2019 2:12:26 PM (6 years ago)
Author:
vboxsync
Message:

VMM: Build fixes for VBOX_WITH_RAW_MODE= on windows.

Location:
trunk/src/VBox/VMM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/GIMAllHv.cpp

    r76886 r78434  
    13721372VMM_INT_DECL(bool) gimHvShouldTrapXcptUD(PVMCPU pVCpu)
    13731373{
     1374#ifdef VBOX_WITH_RAW_MODE
    13741375    if (   VM_IS_RAW_MODE_ENABLED(pVCpu->CTX_SUFF(pVM))
    13751376        && gimHvAreHypercallsEnabled(pVCpu))
    13761377        return true;
     1378#else
     1379    RT_NOREF(pVCpu);
     1380#endif
    13771381    return false;
    13781382}
  • trunk/src/VBox/VMM/VMMR3/DBGFAddr.cpp

    r76553 r78434  
    4747DECLINLINE(bool) dbgfR3IsHMA(PUVM pUVM, RTGCUINTPTR FlatPtr)
    4848{
     49#ifdef VBOX_WITH_RAW_MODE
    4950    return VM_IS_RAW_MODE_ENABLED(pUVM->pVM)
    5051        && MMHyperIsInsideArea(pUVM->pVM, FlatPtr);
     52#else
     53    RT_NOREF(pUVM, FlatPtr);
     54    return false;
     55#endif
    5156}
    5257
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