Ignore:
Timestamp:
Sep 9, 2000, 10:59:55 AM (25 years ago)
Author:
sandervl
Message:

exception handler changes/fixes (after ExitProcess has been called

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/exceptions.cpp

    r4224 r4229  
    1 /* $Id: exceptions.cpp,v 1.43 2000-09-08 18:07:49 sandervl Exp $ */
     1/* $Id: exceptions.cpp,v 1.44 2000-09-09 08:59:54 sandervl Exp $ */
    22
    33/* WARNING: Compiling this module with ICC with optimizations turned on   */
     
    10761076        dprintfException(pERepRec, pERegRec, pCtxRec, p);
    10771077        dprintf(("KERNEL32: OS2ExceptionHandler: FPU exception\n"));
    1078         if(fIsOS2Image == FALSE)  //Only for real win32 apps
     1078        if(!fIsOS2Image && !fExitProcess)  //Only for real win32 apps
    10791079        {
    10801080                if(OSLibDispatchException(pERepRec, pERegRec, pCtxRec, p) == FALSE)
     
    11811181        }
    11821182#endif
    1183         if(fIsOS2Image == FALSE)  //Only for real win32 apps
     1183        if(!fIsOS2Image && !fExitProcess)  //Only for real win32 apps
    11841184        {
    11851185                if(OSLibDispatchException(pERepRec, pERegRec, pCtxRec, p) == TRUE)
Note: See TracChangeset for help on using the changeset viewer.