Changeset 2939 for trunk/src/kernel32/exceptions.cpp
- Timestamp:
- Feb 29, 2000, 1:54:22 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptions.cpp
r2802 r2939 1 /* $Id: exceptions.cpp,v 1.3 4 2000-02-16 14:25:39sandervl Exp $ */1 /* $Id: exceptions.cpp,v 1.35 2000-02-29 00:54:22 sandervl Exp $ */ 2 2 3 3 /* … … 516 516 extern "C" ULONG getEAX(); 517 517 extern "C" ULONG getEBX(); 518 VOID WIN32API ExitProcess(DWORD exitcode); 518 519 //****************************************************************************** 519 520 void KillWin32Process(void) 520 521 { 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); 532 524 } 533 525
Note:
See TracChangeset
for help on using the changeset viewer.