VirtualBox

Changeset 69414 in vbox for trunk/src/VBox/VMM/VMMR0


Ignore:
Timestamp:
Oct 27, 2017 9:42:59 AM (7 years ago)
Author:
vboxsync
Message:

VMM/HMSVMR0: Doxygen leading to removing unused code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp

    r69413 r69414  
    26712671
    26722672/**
    2673  * Sets an exception as pending-for-injection into the VM.
    2674  *
    2675  * @param   pVCpu       The cross context virtual CPU structure.
    2676  */
    2677 DECLINLINE(void) hmR0SvmSetPendingXcpt(PVMCPU pVCpu, uint8_t uXcpt)
    2678 {
    2679     SVMEVENT Event;
    2680     Event.u          = 0;
    2681     Event.n.u1Valid  = 1;
    2682     Event.n.u3Type   = SVM_EVENT_EXCEPTION;
    2683     Event.n.u8Vector = uXcpt;
    2684     hmR0SvmSetPendingEvent(pVCpu, &Event, 0 /* GCPtrFaultAddress */);
    2685 }
    2686 
    2687 
    2688 /**
    26892673 * Sets an invalid-opcode (\#UD) exception as pending-for-injection into the VM.
    26902674 *
     
    74437427    }
    74447428
    7445     hmR0SvmSetPendingXcpt(pVCpu, X86_XCPT_DB);
     7429    hmR0SvmSetPendingXcptDB(pVCpu);
    74467430    return VINF_SUCCESS;
    74477431}
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