Changeset 66000 in vbox for trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
- Timestamp:
- Mar 8, 2017 8:29:40 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r65934 r66000 14954 14954 #ifdef VBOX_WITH_NESTED_HWVIRT 14955 14955 /** 14956 * Checks if IEM is in the process of delivering an event (interrupt or 14957 * exception). 14958 * 14959 * @returns true if it's raising an interrupt or exception, false otherwise. 14960 * @param pVCpu The cross context virtual CPU structure. 14961 */ 14962 VMM_INT_DECL(bool) IEMIsRaisingIntOrXcpt(PVMCPU pVCpu) 14963 { 14964 return pVCpu->iem.s.cXcptRecursions > 0; 14965 } 14966 14967 14968 /** 14956 14969 * Interface for HM and EM to emulate the STGI instruction. 14957 14970 *
Note:
See TracChangeset
for help on using the changeset viewer.