[CMAKE]
[reactos.git] / ntoskrnl / fsrtl / stackovf.c
1 /*
2 * PROJECT: ReactOS Kernel
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: ntoskrnl/fsrtl/stackovf.c
5 * PURPOSE: Provides Stack Overflow support for File System Drivers
6 * PROGRAMMERS: None.
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <ntoskrnl.h>
12 #define NDEBUG
13 #include <debug.h>
14
15 /* PUBLIC FUNCTIONS **********************************************************/
16
17 /*++
18 * @name FsRtlPostPagingFileStackOverflow
19 * @unimplemented NT 4.0
20 *
21 * The FsRtlPostPagingFileStackOverflow routine
22 *
23 * @param Context
24 *
25 * @param Event
26 *
27 * @param StackOverflowRoutine
28 *
29 * @return
30 *
31 * @remarks None.
32 *
33 *--*/
34 VOID
35 NTAPI
36 FsRtlPostPagingFileStackOverflow(IN PVOID Context,
37 IN PKEVENT Event,
38 IN PFSRTL_STACK_OVERFLOW_ROUTINE StackOverflowRoutine)
39 {
40 UNIMPLEMENTED;
41 }
42
43 /*++
44 * @name FsRtlPostStackOverflow
45 * @unimplemented NT 4.0
46 *
47 * The FsRtlPostStackOverflow routine
48 *
49 * @param Context
50 *
51 * @param Event
52 *
53 * @param StackOverflowRoutine
54 *
55 * @return
56 *
57 * @remarks None.
58 *
59 *--*/
60 VOID
61 NTAPI
62 FsRtlPostStackOverflow(IN PVOID Context,
63 IN PKEVENT Event,
64 IN PFSRTL_STACK_OVERFLOW_ROUTINE StackOverflowRoutine)
65 {
66 KeBugCheck(FILE_SYSTEM);
67 }
68
69 /* EOF */