Changeset 8824 in vbox for trunk/src/VBox
- Timestamp:
- May 14, 2008 10:12:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/EM.cpp
r8155 r8824 610 610 * Guru meditation. 611 611 */ 612 case VERR_REM_TOO_MANY_TRAPS: /** @todo Make a guru mediation event! */ 613 rc = DBGFR3EventSrc(pVM, DBGFEVENT_DEV_STOP, "VERR_REM_TOO_MANY_TRAPS", 0, NULL, NULL); 614 break; 615 612 616 default: /** @todo don't use default for guru, but make special errors code! */ 613 617 rc = DBGFR3Event(pVM, DBGFEVENT_FATAL_ERROR); … … 813 817 * and the termination of the VM! 814 818 */ 815 AssertMsg Failed(("Unknown GC return code: %Vra\n", rc));819 AssertMsg(rc == VERR_REM_TOO_MANY_TRAPS, ("Unknown GC return code: %Vra\n", rc)); 816 820 break; 817 821 }
Note:
See TracChangeset
for help on using the changeset viewer.