Changeset 4264 for trunk/src/kernel32/exceptions.cpp
- Timestamp:
- Sep 15, 2000, 3:24:29 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r4229 r4264 1 /* $Id: exceptions.cpp,v 1.4 4 2000-09-09 08:59:54sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.45 2000-09-15 13:24:29 sandervl Exp $ */ 2 2 3 3 /* WARNING: Compiling this module with ICC with optimizations turned on */ … … 1053 1053 PVOID p) 1054 1054 { 1055 //MN: If EH_NESTED_CALL is set, an exception occurred during the execution1056 // of this exception handler. We better bail out ASAP or we'll likely1057 // recurse infinitely until we run out of stack space!!1058 if (pERepRec->fHandlerFlags & EH_NESTED_CALL)1059 return XCPT_CONTINUE_SEARCH;1060 1061 1055 //SvL: Check if exception inside debug fprintf -> if so, clear lock so 1062 1056 // next dprintf won't wait forever … … 1175 1169 case XCPT_IN_PAGE_ERROR: 1176 1170 CrashAndBurn: 1171 //SvL: TODO: this may not always be the right thing to do 1172 //MN: If EH_NESTED_CALL is set, an exception occurred during the execution 1173 // of this exception handler. We better bail out ASAP or we'll likely 1174 // recurse infinitely until we run out of stack space!! 1175 if (pERepRec->fHandlerFlags & EH_NESTED_CALL) 1176 return XCPT_CONTINUE_SEARCH; 1177 1177 1178 #ifdef DEBUG 1178 1179 dprintfException(pERepRec, pERegRec, pCtxRec, p);
Note:
See TracChangeset
for help on using the changeset viewer.