Create a branch for working on csrss and co.
[reactos.git] / reactos / subsystems / win32 / csrss / csrss.c
diff --git a/reactos/subsystems/win32/csrss/csrss.c b/reactos/subsystems/win32/csrss/csrss.c
deleted file mode 100644 (file)
index 4ea1ee7..0000000
+++ /dev/null
@@ -1,93 +0,0 @@
-/*
- * 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
- */
-
-/* INCLUDES *******************************************************************/
-
-#define WIN32_NO_STATUS
-#include <windows.h>
-#define NTOS_MODE_USER
-#include <ndk/ntndk.h>
-#include <api.h>
-#define NDEBUG
-#include <debug.h>
-
-/* 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)
-{
-    KPRIORITY BasePriority = (8 + 1) + 4;
-    NTSTATUS Status;
-    //ULONG Response;
-    UNREFERENCED_PARAMETER(envp);
-    UNREFERENCED_PARAMETER(DebugFlag);
-
-    /* Set the Priority */
-    NtSetInformationProcess(NtCurrentProcess(),
-                            ProcessBasePriority,
-                            &BasePriority,
-                            sizeof(KPRIORITY));
-
-    /* Give us IOPL so that we can access the VGA registers */
-    Status = NtSetInformationProcess(NtCurrentProcess(),
-                                     ProcessUserModeIOPL,
-                                     NULL,
-                                     0);
-    if (!NT_SUCCESS(Status))
-    {
-        /* Raise a hard error */
-        DPRINT1("CSRSS: Could not raise IOPL: %x\n", Status);
-#if 0
-        Status = NtRaiseHardError(STATUS_IO_PRIVILEGE_FAILED,
-                                  0,
-                                  0,
-                                  NULL,
-                                  OptionOk,
-                                  &Response);
-#endif
-    }
-
-    /* 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;
-}
-
-/* EOF */