More credits in the RC file for pedump and shutdown.
[reactos.git] / posix / server / call / _exit.c
1 /* $Id: _exit.c,v 1.3 2002/10/29 04:45:51 rex 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 <napi/lpc.h>
32 #include <psxss.h>
33
34 NTSTATUS STDCALL syscall__exit (PPSX_MAX_MESSAGE Msg)
35 {
36 Msg->PsxHeader.Status = STATUS_SUCCESS;
37 /* TODO */
38 return STATUS_SUCCESS;
39 }
40 /* EOF */