Changeset 9315 for trunk/src/kernel32/exceptions.cpp
- Timestamp:
- Oct 1, 2002, 1:37:19 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r8920 r9315 1 /* $Id: exceptions.cpp,v 1.6 5 2002-07-26 10:47:33sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.66 2002-10-01 11:37:19 sandervl Exp $ */ 2 2 3 3 /* … … 1137 1137 int prevlock = LogException(ENTER_EXCEPTION); 1138 1138 1139 //print exception name & exception type 1140 sprintfException(pERepRec, pERegRec, pCtxRec, p, szTrapDump); 1139 //Print exception name & exception type 1140 //Not for a guard page exception as sprintfException uses a lot of stack 1141 //and can trigger nested guard page exceptions (crash) 1142 if(pERepRec->ExceptionNum != XCPT_GUARD_PAGE_VIOLATION) { 1143 sprintfException(pERepRec, pERegRec, pCtxRec, p, szTrapDump); 1144 } 1141 1145 1142 1146 /* Access violation at a known location */
Note:
See TracChangeset
for help on using the changeset viewer.