2005-10-20 22:31:42 +02:00
|
|
|
/* Header file for the system service manager server.
|
|
|
|
*
|
|
|
|
* Created:
|
|
|
|
* Jul 22, 2005 by Jorrit N. Herder
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _SYSTEM 1 /* get OK and negative error codes */
|
|
|
|
#define _MINIX 1 /* tell headers to include MINIX stuff */
|
|
|
|
|
|
|
|
#include <ansi.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <minix/callnr.h>
|
|
|
|
#include <minix/config.h>
|
|
|
|
#include <minix/type.h>
|
|
|
|
#include <minix/const.h>
|
|
|
|
#include <minix/com.h>
|
|
|
|
#include <minix/syslib.h>
|
|
|
|
#include <minix/sysutil.h>
|
|
|
|
#include <minix/keymap.h>
|
|
|
|
#include <minix/bitmap.h>
|
2009-12-02 10:54:50 +01:00
|
|
|
#include <minix/rs.h>
|
2009-12-11 01:08:19 +01:00
|
|
|
#include <minix/dmap.h>
|
|
|
|
#include <minix/endpoint.h>
|
2005-10-20 22:31:42 +02:00
|
|
|
|
2010-03-09 10:41:14 +01:00
|
|
|
#include <machine/archtypes.h>
|
2006-10-20 17:01:32 +02:00
|
|
|
#include <timers.h> /* For priv.h */
|
|
|
|
#include "../../kernel/priv.h"
|
2009-12-11 01:08:19 +01:00
|
|
|
#include "../../kernel/ipc.h"
|
2006-10-20 17:01:32 +02:00
|
|
|
|
2005-10-20 22:31:42 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include "proto.h"
|
2009-12-11 01:08:19 +01:00
|
|
|
#include "const.h"
|
|
|
|
#include "type.h"
|
|
|
|
#include "glo.h"
|
2005-10-20 22:31:42 +02:00
|
|
|
|