source: branches/minix3-book/servers/rs/rs.h@ 4

Last change on this file since 4 was 4, checked in by Mattia Monga, 13 years ago

Importazione sorgenti libro

File size: 754 bytes
Line 
1/* Header file for the system service manager server.
2 *
3 * Created:
4 * Jul 22, 2005 by Jorrit N. Herder
5 */
6
7#define _SYSTEM 1 /* get OK and negative error codes */
8#define _MINIX 1 /* tell headers to include MINIX stuff */
9
10#define VERBOSE 0 /* display diagnostics */
11
12#include <ansi.h>
13#include <sys/types.h>
14#include <limits.h>
15#include <errno.h>
16#include <signal.h>
17
18#include <minix/callnr.h>
19#include <minix/config.h>
20#include <minix/type.h>
21#include <minix/const.h>
22#include <minix/com.h>
23#include <minix/syslib.h>
24#include <minix/sysutil.h>
25#include <minix/keymap.h>
26#include <minix/bitmap.h>
27
28#include <stdlib.h>
29#include <stdio.h>
30#include <string.h>
31#include <unistd.h>
32#include <signal.h>
33
34#include "proto.h"
35
Note: See TracBrowser for help on using the repository browser.