mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[NTOSKRNL]
Make post stack overflow functions use the same (unimplemented) helper function svn path=/trunk/; revision=58899
This commit is contained in:
parent
7ca3c9d2a7
commit
1f1a1a9323
1 changed files with 14 additions and 2 deletions
|
@ -12,6 +12,18 @@
|
|||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
/* PRIVATE FUNCTIONS *********************************************************/
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
FsRtlpPostStackOverflow(IN PVOID Context,
|
||||
IN PKEVENT Event,
|
||||
IN PFSRTL_STACK_OVERFLOW_ROUTINE StackOverflowRoutine,
|
||||
IN BOOLEAN IsPaging)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
/* PUBLIC FUNCTIONS **********************************************************/
|
||||
|
||||
/*++
|
||||
|
@ -37,7 +49,7 @@ FsRtlPostPagingFileStackOverflow(IN PVOID Context,
|
|||
IN PKEVENT Event,
|
||||
IN PFSRTL_STACK_OVERFLOW_ROUTINE StackOverflowRoutine)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
FsRtlpPostStackOverflow(Context, Event, StackOverflowRoutine, TRUE);
|
||||
}
|
||||
|
||||
/*++
|
||||
|
@ -63,7 +75,7 @@ FsRtlPostStackOverflow(IN PVOID Context,
|
|||
IN PKEVENT Event,
|
||||
IN PFSRTL_STACK_OVERFLOW_ROUTINE StackOverflowRoutine)
|
||||
{
|
||||
KeBugCheck(FILE_SYSTEM);
|
||||
FsRtlpPostStackOverflow(Context, Event, StackOverflowRoutine, FALSE);
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue