Changeset 90161 in vbox
- Timestamp:
- Jul 12, 2021 11:08:00 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r89993 r90161 1300 1300 /** NEM returned in the wrong state. */ 1301 1301 #define VERR_VMM_WRONG_NEM_VMCPU_STATE (-2718) 1302 /** Got back from vmmR0CallRing3SetJmp with the context hook still enabled. */ 1303 #define VERR_VMM_CONTEXT_HOOK_STILL_ENABLED (-2719) 1302 1304 /** @} */ 1303 1305 -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r89912 r90161 1484 1484 */ 1485 1485 if (RT_UNLIKELY( VMCPU_GET_STATE(pGVCpu) != VMCPUSTATE_STARTED_HM 1486 && RT_SUCCESS_NP(rc) && rc != VINF_VMM_CALL_HOST )) 1486 && RT_SUCCESS_NP(rc) 1487 && rc != VINF_VMM_CALL_HOST )) 1487 1488 { 1488 1489 pGVM->vmm.s.szRing0AssertMsg1[0] = '\0'; … … 1497 1498 RTStrPrintf(pGVM->vmm.s.szRing0AssertMsg2, sizeof(pGVM->vmm.s.szRing0AssertMsg2), 1498 1499 "Thread-context hooks still enabled! VCPU=%p Id=%u rc=%d.\n", pGVCpu, pGVCpu->idCpu, rc); 1499 rc = VERR_ INVALID_STATE;1500 rc = VERR_VMM_CONTEXT_HOOK_STILL_ENABLED; 1500 1501 } 1501 1502 -
trunk/src/VBox/VMM/VMMR3/VMMGuruMeditation.cpp
r90160 r90161 321 321 case VINF_EM_DBG_HYPER_ASSERTION: 322 322 case VERR_VMM_RING3_CALL_DISABLED: 323 case VERR_VMM_WRONG_HM_VMCPU_STATE: 324 case VERR_VMM_CONTEXT_HOOK_STILL_ENABLED: 323 325 { 324 326 const char *pszMsg1 = VMMR3GetRZAssertMsg1(pVM);
Note:
See TracChangeset
for help on using the changeset viewer.