Changeset 3023 in vbox for trunk/src/recompiler/VBoxRecompiler.c
- Timestamp:
- Jun 4, 2007 12:42:50 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21776
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r2981 r3023 1595 1595 #endif 1596 1596 Log(("remR3NotifyTrap: uTrap=%x error=%x next_eip=%VGv eip=%VGv cr2=%08x\n", uTrap, uErrorCode, pvNextEIP, env->eip, env->cr[2])); 1597 if(uTrap < 0x20) 1597 if( uTrap < 0x20 1598 && (env->cr[0] & X86_CR0_PE)) 1598 1599 { 1599 1600 #ifdef DEBUG 1600 1601 remR3DisasInstr(env, 1, "remR3NotifyTrap: "); 1601 1602 #endif 1602 if(pVM->rem.s.uPendingException == uTrap && ++pVM->rem.s.cPendingExceptions > 128)1603 if(pVM->rem.s.uPendingException == uTrap && ++pVM->rem.s.cPendingExceptions > 512) 1603 1604 { 1604 1605 LogRel(("VERR_REM_TOO_MANY_TRAPS -> uTrap=%x error=%x next_eip=%VGv eip=%VGv cr2=%08x\n", uTrap, uErrorCode, pvNextEIP, env->eip, env->cr[2]));
Note:
See TracChangeset
for help on using the changeset viewer.