Ignore:
Timestamp:
Jun 7, 1999, 10:58:22 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

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

    r4 r46  
    1 /* $Id: exceptions.cpp,v 1.1 1999-05-24 20:19:41 ktk Exp $ */
    2 
    3 /*
    4  *
    5  * Project Odin Software License can be found in LICENSE.TXT
    6  *
    7  */
    81/*
    92 * Win32 Device IOCTL API functions for OS/2
     
    125 *
    136 * Copyright 1998 Sander van Leeuwen (OS/2 port)
     7 *
     8 *
     9 * Project Odin Software License can be found in LICENSE.TXT
     10 *
    1411 *
    1512 * (win32\except.c)
     
    7269{
    7370 UINT oldmode = CurrentErrorMode;
     71
    7472  dprintf(("OS2SetErrorMode to %d\n", fuErrorMode));
    7573  CurrentErrorMode = fuErrorMode;
     74
    7675  return(oldmode);
    7776}
     
    683682
    684683    return (ERR)(XCPT_CONTINUE_EXECUTION);
     684
     685  case XCPT_PROCESS_TERMINATE:
     686  case XCPT_ASYNC_PROCESS_TERMINATE:
     687    SetExceptionChain((ULONG)0);
     688    return (XCPT_CONTINUE_SEARCH);
     689
    685690  case XCPT_ACCESS_VIOLATION:
    686691  case XCPT_BREAKPOINT:
     
    696701  case XCPT_UNABLE_TO_GROW_STACK:
    697702  case XCPT_IN_PAGE_ERROR:
    698   case XCPT_ASYNC_PROCESS_TERMINATE:
    699703  case XCPT_SIGNAL:
    700704    dprintf(("Continue and kill\n"));
     
    719723 PWINEXCEPTION_FRAME orgframe;
    720724 APIRET          rc;
    721  LONGLONG            timerval;
     725 ULONGULONG            timerval;
    722726
    723727  DisableFPUExceptions();
Note: See TracChangeset for help on using the changeset viewer.