Changeset 103415 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 19, 2024 7:52:27 AM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 161736
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/EM.cpp
r103194 r103415 880 880 if ( pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_RAW 881 881 || pVCpu->em.s.enmState == EMSTATE_DEBUG_HYPER) 882 AssertLogRelMsgFailedStmt(("Bad EM state."), VERR_EM_INTERNAL_ERROR);882 AssertLogRelMsgFailedStmt(("Bad EM state."), rc = VERR_EM_INTERNAL_ERROR); 883 883 #if !defined(VBOX_VMM_TARGET_ARMV8) 884 884 else if (pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_HM) -
trunk/src/VBox/VMM/VMMR3/VMMR3VTable.cpp
r98103 r103415 71 71 { 72 72 void * volatile pvCaller = ASMReturnAddress(); 73 AssertLogRel (("Reserved VMM function table entry called from %p!\n", pvCaller ));73 AssertLogRelMsgFailed(("Reserved VMM function table entry called from %p!\n", pvCaller )); 74 74 return VERR_INTERNAL_ERROR; 75 75 }
Note:
See TracChangeset
for help on using the changeset viewer.