VirtualBox

Changeset 72741 in vbox


Ignore:
Timestamp:
Jun 29, 2018 7:34:08 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
123277
Message:

VMM: Extend HM changed flags. bugref:9193

File:
1 edited

Legend:

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

    r72643 r72741  
    13311331 * @param   pCtx    Current CPU context.
    13321332 */
    1333 DECLINLINE(bool) CPUMIsGuestInRealModeEx(PCPUMCTX pCtx)
     1333DECLINLINE(bool) CPUMIsGuestInRealModeEx(PCCPUMCTX pCtx)
    13341334{
    13351335    return !(pCtx->cr0 & X86_CR0_PE);
     
    13541354 * @param   pCtx    Current CPU context.
    13551355 */
    1356 DECLINLINE(bool) CPUMIsGuestInV86ModeEx(PCPUMCTX pCtx)
     1356DECLINLINE(bool) CPUMIsGuestInV86ModeEx(PCCPUMCTX pCtx)
    13571357{
    13581358    return (pCtx->eflags.Bits.u1VM == 1);
     
    14041404 * @param   pCtx    Current CPU context.
    14051405 */
    1406 DECLINLINE(bool) CPUMIsGuestPagingEnabledEx(PCPUMCTX pCtx)
     1406DECLINLINE(bool) CPUMIsGuestPagingEnabledEx(PCCPUMCTX pCtx)
    14071407{
    14081408    return !!(pCtx->cr0 & X86_CR0_PG);
     
    14151415 * @param   pCtx    Current CPU context.
    14161416 */
    1417 DECLINLINE(bool) CPUMIsGuestInPAEModeEx(PCPUMCTX pCtx)
     1417DECLINLINE(bool) CPUMIsGuestInPAEModeEx(PCCPUMCTX pCtx)
    14181418{
    14191419    /* Intel mentions EFER.LMA and EFER.LME in different parts of their spec. We shall use EFER.LMA rather
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette