mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00

Some fixes to the queueing code Some fixes to the lpc code Fix to section code svn path=/trunk/; revision=913
68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
/* $Id: csrss.c,v 1.4 1999/12/30 01:51:41 dwelch Exp $
|
|
*
|
|
* csrss.c - Client/Server Runtime subsystem
|
|
*
|
|
* ReactOS Operating System
|
|
*
|
|
* --------------------------------------------------------------------
|
|
*
|
|
* This software is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING.LIB. If not, write
|
|
* to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
|
|
* MA 02139, USA.
|
|
*
|
|
* --------------------------------------------------------------------
|
|
*
|
|
* 19990417 (Emanuele Aliberti)
|
|
* Do nothing native application skeleton
|
|
* 19990528 (Emanuele Aliberti)
|
|
* Compiled successfully with egcs 1.1.2
|
|
* 19990605 (Emanuele Aliberti)
|
|
* First standalone run under ReactOS (it
|
|
* actually does nothing but running).
|
|
*/
|
|
#include <ddk/ntddk.h>
|
|
|
|
BOOL TerminationRequestPending = FALSE;
|
|
|
|
BOOL InitializeServer(void);
|
|
|
|
|
|
/* Native process' entry point */
|
|
|
|
VOID NtProcessStartup(PPEB Peb)
|
|
{
|
|
DisplayString(L"Client/Server Runtime Subsystem\n");
|
|
|
|
if (InitializeServer() == TRUE)
|
|
{
|
|
while (FALSE == TerminationRequestPending)
|
|
{
|
|
/* Do nothing! Should it
|
|
* be the SbApi port's
|
|
* thread instead?
|
|
*/
|
|
NtYieldExecution();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
DisplayString( L"CSR: Subsystem initialization failed.\n" );
|
|
/*
|
|
* Tell SM we failed.
|
|
*/
|
|
}
|
|
NtTerminateProcess( NtCurrentProcess(), 0 );
|
|
}
|
|
|
|
/* EOF */
|