mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Added _abnormal_termination() stub.
svn path=/trunk/; revision=2273
This commit is contained in:
parent
767a20760d
commit
a1d321e7b8
3 changed files with 11 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
; $Id: ntoskrnl.def,v 1.115 2001/09/24 00:51:16 chorns Exp $
|
||||
; $Id: ntoskrnl.def,v 1.116 2001/10/10 19:41:35 ekohl Exp $
|
||||
;
|
||||
; reactos/ntoskrnl/ntoskrnl.def
|
||||
;
|
||||
|
@ -927,7 +927,7 @@ ZwWaitForMultipleObjects@20
|
|||
ZwWaitForSingleObject@12
|
||||
ZwWriteFile@36
|
||||
ZwYieldExecution@0
|
||||
;_abnormal_termination
|
||||
_abnormal_termination
|
||||
;_alldiv
|
||||
;_allmul
|
||||
;_allrem
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
; $Id: ntoskrnl.edf,v 1.101 2001/09/24 00:51:16 chorns Exp $
|
||||
; $Id: ntoskrnl.edf,v 1.102 2001/10/10 19:41:35 ekohl Exp $
|
||||
;
|
||||
; reactos/ntoskrnl/ntoskrnl.def
|
||||
;
|
||||
|
@ -925,7 +925,7 @@ ZwWaitForMultipleObjects=ZwWaitForMultipleObjects@20
|
|||
ZwWaitForSingleObject=ZwWaitForSingleObject@12
|
||||
ZwWriteFile=ZwWriteFile@36
|
||||
ZwYieldExecution=ZwYieldExecution@0
|
||||
;_abnormal_termination
|
||||
_abnormal_termination
|
||||
;_alldiv
|
||||
;_allmul
|
||||
;_allrem
|
||||
|
|
|
@ -17,6 +17,13 @@
|
|||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
int CDECL
|
||||
_abnormal_termination(VOID)
|
||||
{
|
||||
DPRINT("_abnormal_termination() called\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
VOID
|
||||
CDECL
|
||||
_local_unwind2(
|
||||
|
|
Loading…
Reference in a new issue