migrate substitution keywords to SVN
[reactos.git] / reactos / 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 <ntoskrnl.h>
15 #include <internal/debug.h>
16
17 /* FUNCTIONS *****************************************************************/
18
19 VOID INIT_FUNCTION
20 NtInit(VOID)
21 {
22 NtInitializeEventImplementation();
23 NtInitializeEventPairImplementation();
24 NtInitializeMutantImplementation();
25 NtInitializeSemaphoreImplementation();
26 NtInitializeTimerImplementation();
27 NiInitPort();
28 NtInitializeProfileImplementation();
29 }
30
31 /* EOF */