Remove my changes to pagefile creation because they cause a hang for some people.
[reactos.git] / posix / server / call / _exit.c
1 /* $Id: _exit.c,v 1.4 2004/01/18 21:27:32 ea Exp $
2 *
3 * PROJECT : ReactOS / POSIX+ Environment Subsystem Server
4 * FILE : reactos/subsys/psx/server/call/_exit.c
5 * DESCRIPTION: System call _exit().
6 * DATE : 2002-04-05
7 * AUTHOR : Emanuele Aliberti <eal@users.sf.net>
8 *
9 * --------------------------------------------------------------------
10 *
11 * This software is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version.
15 *
16 * This software is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this software; see the file COPYING. If not, write
23 * to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge,
24 * MA 02139, USA.
25 *
26 * --------------------------------------------------------------------
27 */
28 #define NTOS_MODE_USER
29 #include <ntos.h>
30 #include <ntdll/rtl.h>
31 #include <psxss.h>
32
33 NTSTATUS STDCALL syscall__exit (PPSX_MAX_MESSAGE Msg)
34 {
35 Msg->PsxHeader.Status = STATUS_SUCCESS;
36 /* TODO */
37 return STATUS_SUCCESS;
38 }
39 /* EOF */