2010-03-10 04:59:39 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Client Server Runtime SubSystem (CSRSS)
|
|
|
|
* LICENSE: BSD - See COPYING.ARM in root directory
|
|
|
|
* FILE: subsystems/win32/csrss/csrss.c
|
|
|
|
* PURPOSE: Main Executable Code
|
|
|
|
* PROGRAMMERS: Alex Ionescu
|
|
|
|
* ReactOS Portable Systems Group
|
1999-06-08 22:50:59 +00:00
|
|
|
*/
|
2005-06-20 11:56:10 +00:00
|
|
|
|
2010-03-10 04:59:39 +00:00
|
|
|
/* INCLUDES *******************************************************************/
|
2000-03-22 18:36:00 +00:00
|
|
|
|
2010-03-10 04:59:39 +00:00
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include <windows.h>
|
|
|
|
#include <api.h>
|
2005-02-26 15:06:19 +00:00
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
1999-06-08 22:50:59 +00:00
|
|
|
|
2010-03-10 04:59:39 +00:00
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
|
|
|
|
VOID
|
|
|
|
NTAPI
|
|
|
|
CsrpSetDefaultProcessHardErrorMode(VOID)
|
|
|
|
{
|
|
|
|
ULONG DefaultHardErrorMode = 0;
|
|
|
|
|
|
|
|
/* Disable hard errors */
|
|
|
|
NtSetInformationProcess(NtCurrentProcess(),
|
|
|
|
ProcessDefaultHardErrorMode,
|
|
|
|
&DefaultHardErrorMode,
|
|
|
|
sizeof(DefaultHardErrorMode));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_cdecl
|
|
|
|
_main(int argc,
|
|
|
|
char *argv[],
|
|
|
|
char *envp[],
|
|
|
|
int DebugFlag)
|
2005-02-26 15:06:19 +00:00
|
|
|
{
|
2010-03-10 04:59:39 +00:00
|
|
|
KPRIORITY BasePriority = (8 + 1) + 4;
|
|
|
|
NTSTATUS Status;
|
|
|
|
|
|
|
|
/* Set the Priority */
|
|
|
|
NtSetInformationProcess(NtCurrentProcess(),
|
|
|
|
ProcessBasePriority,
|
|
|
|
&BasePriority,
|
|
|
|
sizeof(KPRIORITY));
|
|
|
|
|
|
|
|
/* Initialize CSR through CSRSRV */
|
|
|
|
Status = CsrServerInitialization(argc, argv);
|
|
|
|
if (!NT_SUCCESS(Status))
|
|
|
|
{
|
|
|
|
/* Kill us */
|
|
|
|
DPRINT1("CSRSS: CsrServerInitialization failed:% lx\n", Status);
|
|
|
|
NtTerminateProcess(NtCurrentProcess(), Status);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable errors */
|
|
|
|
CsrpSetDefaultProcessHardErrorMode();
|
|
|
|
|
|
|
|
/* If this is Session 0, make sure killing us bugchecks the system */
|
|
|
|
if (!NtCurrentPeb()->SessionId) RtlSetProcessIsCritical(TRUE, NULL, FALSE);
|
|
|
|
|
|
|
|
/* Kill this thread. CSRSRV keeps us going */
|
|
|
|
NtTerminateThread (NtCurrentThread(), Status);
|
|
|
|
return 0;
|
1999-06-08 22:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* EOF */
|