:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / ntoskrnl / nt / nt.c
1 /* $Id$
2  *
3  * COPYRIGHT:       See COPYING in the top level directory
4  * PROJECT:         ReactOS kernel
5  * FILE:            ntoskrnl/nt/nt.c
6  * PURPOSE:         Initialization of system call interfaces
7  * PROGRAMMER:      David Welch (welch@cwcom.net)
8  * UPDATE HISTORY:
9  *                  Created 22/05/98
10  */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ddk/ntddk.h>
15 #include <internal/nt.h>
16
17 #include <internal/debug.h>
18
19 /* FUNCTIONS *****************************************************************/
20
21 VOID NtInit(VOID)
22 {
23    NtInitializeEventImplementation();
24    NtInitializeEventPairImplementation();
25    NtInitializeMutantImplementation();
26    NtInitializeSemaphoreImplementation();
27    NtInitializeTimerImplementation();
28    NiInitPort();
29    NtInitializeProfileImplementation();
30 }
31
32 /* EOF */