mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
1bf0775833
* ntoskrnl/include/.cvsignore: New file. * ntoskrnl/include/ntoskrnl.h: Ditto. * ntoskrnl/*/*.c: Use pre-compiled header. * ntoskrnl/Makefile: Support pre-compiled header. * tools/helper.mk: .pch files are now .gch files. svn path=/trunk/; revision=10550
31 lines
874 B
C
31 lines
874 B
C
/* $Id: nt.c,v 1.12 2004/08/15 16:39:09 chorns Exp $
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS kernel
|
|
* FILE: ntoskrnl/nt/nt.c
|
|
* PURPOSE: Initialization of system call interfaces
|
|
* PROGRAMMER: David Welch (welch@cwcom.net)
|
|
* UPDATE HISTORY:
|
|
* Created 22/05/98
|
|
*/
|
|
|
|
/* INCLUDES *****************************************************************/
|
|
|
|
#include <ntoskrnl.h>
|
|
#include <internal/debug.h>
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
VOID INIT_FUNCTION
|
|
NtInit(VOID)
|
|
{
|
|
NtInitializeEventImplementation();
|
|
NtInitializeEventPairImplementation();
|
|
NtInitializeMutantImplementation();
|
|
NtInitializeSemaphoreImplementation();
|
|
NtInitializeTimerImplementation();
|
|
NiInitPort();
|
|
NtInitializeProfileImplementation();
|
|
}
|
|
|
|
/* EOF */
|