Ignore:
Timestamp:
Feb 29, 2000, 1:54:22 AM (25 years ago)
Author:
sandervl
Message:

Call ExitProcess in KillWin32Process

File:
1 edited

Legend:

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

    r2802 r2939  
    1 /* $Id: exceptions.cpp,v 1.34 2000-02-16 14:25:39 sandervl Exp $ */
     1/* $Id: exceptions.cpp,v 1.35 2000-02-29 00:54:22 sandervl Exp $ */
    22
    33/*
     
    516516extern "C" ULONG getEAX();
    517517extern "C" ULONG getEBX();
     518VOID WIN32API ExitProcess(DWORD exitcode);
    518519//******************************************************************************
    519520void KillWin32Process(void)
    520521{
    521  char  excptmsg[64];
    522  ULONG excptaddr, excptnr;
    523 
    524   excptnr   = getEAX();
    525   excptaddr = getEBX();
    526 
    527   //Restore original OS/2 TIB selector
    528   RestoreOS2FS();
    529 
    530   SetExceptionChain((ULONG)-1);
    531   DosExit(EXIT_PROCESS, 666);
     522
     523  ExitProcess(666);
    532524}
    533525
Note: See TracChangeset for help on using the changeset viewer.