- Timestamp:
- Sep 9, 2000, 10:59:55 AM (25 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r4224 r4229 1 /* $Id: exceptions.cpp,v 1.4 3 2000-09-08 18:07:49sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.44 2000-09-09 08:59:54 sandervl Exp $ */ 2 2 3 3 /* WARNING: Compiling this module with ICC with optimizations turned on */ … … 1076 1076 dprintfException(pERepRec, pERegRec, pCtxRec, p); 1077 1077 dprintf(("KERNEL32: OS2ExceptionHandler: FPU exception\n")); 1078 if( fIsOS2Image == FALSE) //Only for real win32 apps1078 if(!fIsOS2Image && !fExitProcess) //Only for real win32 apps 1079 1079 { 1080 1080 if(OSLibDispatchException(pERepRec, pERegRec, pCtxRec, p) == FALSE) … … 1181 1181 } 1182 1182 #endif 1183 if( fIsOS2Image == FALSE) //Only for real win32 apps1183 if(!fIsOS2Image && !fExitProcess) //Only for real win32 apps 1184 1184 { 1185 1185 if(OSLibDispatchException(pERepRec, pERegRec, pCtxRec, p) == TRUE) -
trunk/src/kernel32/oslibexcept.cpp
r4224 r4229 1 /* $Id: oslibexcept.cpp,v 1. 3 2000-09-08 18:07:50sandervl Exp $ */1 /* $Id: oslibexcept.cpp,v 1.4 2000-09-09 08:59:55 sandervl Exp $ */ 2 2 /* 3 3 * Exception handler util. procedures … … 182 182 case XCPT_UNABLE_TO_GROW_STACK: 183 183 case XCPT_IN_PAGE_ERROR: 184 default: 184 185 SetFS(oldsel); //restore FS 185 186 return FALSE; //let's not dispatch those for now -
trunk/src/kernel32/wprocess.cpp
r4035 r4229 1 /* $Id: wprocess.cpp,v 1. 89 2000-08-18 18:16:34sandervl Exp $ */1 /* $Id: wprocess.cpp,v 1.90 2000-09-09 08:59:55 sandervl Exp $ */ 2 2 3 3 /* … … 53 53 //****************************************************************************** 54 54 BOOL fIsOS2Image = FALSE; //TRUE -> Odin32 OS/2 application (not converted!) 55 //FALSE -> otherwise 55 //FALSE -> otherwise 56 BOOL fExitProcess = FALSE; 57 56 58 //Process database 57 59 PDB ProcessPDB = {0}; … … 400 402 dprintf(("KERNEL32: ExitProcess %d\n", exitcode)); 401 403 dprintf(("KERNEL32: ExitProcess FS = %x\n", GetFS())); 404 405 fExitProcess = TRUE; 402 406 403 407 SetOS2ExceptionChain(-1);
Note:
See TracChangeset
for help on using the changeset viewer.