2004-08-15 Casper S. Hornstrup <chorns@users.sourceforge.net>
[reactos.git] / reactos / ntoskrnl / ke / profile.c
1 /* $Id: profile.c,v 1.2 2004/08/15 16:39:05 chorns Exp $
2 *
3 * FILE: ntoskrnl/ke/profile.c
4 * PURPOSE: Kernel Profiling
5 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
6 * UPDATE HISTORY:
7 * Created 23/06/04
8 */
9
10 #include <ntoskrnl.h>
11 #define NDEBUG
12 #include <internal/debug.h>
13
14 /*
15 * @unimplemented
16 */
17 STDCALL
18 VOID
19 KeProfileInterrupt(
20 PKTRAP_FRAME TrapFrame
21 )
22 {
23 UNIMPLEMENTED;
24 }
25
26 /*
27 * @unimplemented
28 */
29 STDCALL
30 VOID
31 KeProfileInterruptWithSource(
32 IN PKTRAP_FRAME TrapFrame,
33 IN KPROFILE_SOURCE Source
34 )
35 {
36 UNIMPLEMENTED;
37 }
38
39 /*
40 * @unimplemented
41 */
42 STDCALL
43 VOID
44 KeSetProfileIrql(
45 IN KIRQL ProfileIrql
46 )
47 {
48 UNIMPLEMENTED;
49 }