Copy wininet to branch
[reactos.git] / reactos / subsys / smss / smss.c
1 /* $Id$
2 *
3 * smss.c - Session Manager
4 *
5 * ReactOS Operating System
6 *
7 * --------------------------------------------------------------------
8 *
9 * This software is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
13 *
14 * This software is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this software; see the file COPYING.LIB. If not, write
21 * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
22 * MA 02139, USA.
23 *
24 * --------------------------------------------------------------------
25 */
26 #include "smss.h"
27 #include <rosrtl/string.h>
28 #include <reactos/buildno.h>
29
30 #define NDEBUG
31 #include <debug.h>
32
33 HANDLE SmSsProcessId = 0;
34
35 /* Native image's entry point */
36
37 VOID STDCALL
38 NtProcessStartup(PPEB Peb)
39 {
40 NTSTATUS Status;
41 PROCESS_BASIC_INFORMATION PBI = {0};
42
43 PrintString("ReactOS Session Manager %s (Build %s)\n",
44 KERNEL_RELEASE_STR,
45 KERNEL_VERSION_BUILD_STR);
46
47 /* Lookup yourself */
48 Status = NtQueryInformationProcess (NtCurrentProcess(),
49 ProcessBasicInformation,
50 & PBI,
51 sizeof PBI,
52 NULL);
53 if(NT_SUCCESS(Status))
54 {
55 SmSsProcessId = PBI.UniqueProcessId;
56 }
57 /* Initialize the system */
58 Status = InitSessionManager();
59 #if 0
60 if (!NT_SUCCESS(Status))
61 {
62 int i;
63 for (i=0; i < (sizeof Children / sizeof Children[0]); i++)
64 {
65 if (Children[i])
66 {
67 NtTerminateProcess(Children[i],0);
68 }
69 }
70 DPRINT1("SM: Initialization failed!\n");
71 goto ByeBye;
72 }
73
74 Status = NtWaitForMultipleObjects(((LONG) sizeof(Children) / sizeof(HANDLE)),
75 Children,
76 WaitAny,
77 TRUE, /* alertable */
78 NULL); /* NULL for infinite */
79 if (!NT_SUCCESS(Status))
80 {
81 DPRINT1("SM: NtWaitForMultipleObjects failed! (Status=0x%08lx)\n", Status);
82 }
83 else
84 {
85 DPRINT1("SM: Process terminated!\n");
86 }
87
88 ByeBye:
89 /* Raise a hard error (crash the system/BSOD) */
90 NtRaiseHardError(STATUS_SYSTEM_PROCESS_TERMINATED,
91 0,0,0,0,0);
92
93 // NtTerminateProcess(NtCurrentProcess(), 0);
94 #endif
95 NtTerminateThread(NtCurrentThread(), Status);
96 }
97
98 /* EOF */