This commit was generated by cvs2svn to compensate for changes in r39,
[reactos.git] / reactos / ntoskrnl / ps / psmgr.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: ntoskrnl/ps/psmgr.c
5 * PURPOSE: Process managment
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 */
8
9 /* INCLUDES **************************************************************/
10
11 #include <windows.h>
12 #include <ddk/ntddk.h>
13 #include <internal/ps.h>
14
15 /* FUNCTIONS ***************************************************************/
16
17 VOID PsInit(VOID)
18 {
19 ObjInitializeHandleTable(NULL);
20 PsInitProcessManagment();
21 PsInitThreadManagment();
22 PsInitIdleThread();
23 }