Changeset 8840 for trunk/src/kernel32/exceptions.cpp
- Timestamp:
- Jul 5, 2002, 7:59:30 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r8836 r8840 1 /* $Id: exceptions.cpp,v 1.6 3 2002-07-05 15:09:59sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.64 2002-07-05 17:59:30 sandervl Exp $ */ 2 2 3 3 /* … … 578 578 rc = CurrentUnhExceptionFlt(lpexpExceptionInfo); 579 579 if(rc != WINEXCEPTION_CONTINUE_SEARCH) 580 return rc; 581 } 582 580 return rc; 581 } 583 582 584 583 if (DosQueryModFromEIP(&hmod, &iObj, sizeof(szModName), szModName, &offObj, (ULONG)lpexpExceptionInfo->ExceptionRecord->ExceptionAddress)) … … 620 619 621 620 case MBID_ABORT: 622 KillWin32Process();623 // fall-through624 625 621 case MBID_RETRY: 626 622 default: … … 1067 1063 if(szExceptionLogFileName[0] == 0) { 1068 1064 strcpy(szExceptionLogFileName, kernel32Path); 1069 strcat(szExceptionLogFileName, "\\except ion.log");1065 strcat(szExceptionLogFileName, "\\except.log"); 1070 1066 } 1071 1067 rc = DosOpen(szExceptionLogFileName, /* File path name */ … … 1301 1297 else goto continuesearch; //pass on to OS/2 RTL or app exception handler 1302 1298 1299 //Log fatal exception here 1300 logException(); 1301 1303 1302 dprintf(("KERNEL32: OS2ExceptionHandler: Continue and kill\n")); 1304 1303 1305 //Log fatal exception here1306 logException();1307 1308 1304 pCtxRec->ctx_RegEip = (ULONG)KillWin32Process; 1309 1305 pCtxRec->ctx_RegEsp = pCtxRec->ctx_RegEsp + 0x10;
Note:
See TracChangeset
for help on using the changeset viewer.