comparison src/os/unix/ngx_posix_config.h @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children 4b2dafa26fe2
comparison
equal deleted inserted replaced
-1:000000000000 0:f0b350454894
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #ifndef _NGX_POSIX_CONFIG_H_INCLUDED_
8 #define _NGX_POSIX_CONFIG_H_INCLUDED_
9
10
11 #include <sys/types.h>
12 #include <sys/time.h>
13 #include <unistd.h>
14 #include <stdarg.h>
15 #include <stddef.h> /* offsetof() */
16 #include <stdio.h>
17 #include <stdlib.h>
18 #include <errno.h>
19 #include <string.h>
20 #include <signal.h>
21 #include <pwd.h>
22 #include <grp.h>
23 #include <dirent.h>
24
25 #include <sys/uio.h>
26 #include <sys/filio.h> /* FIONBIO */
27 #include <sys/stat.h>
28 #include <fcntl.h>
29
30 #include <sys/wait.h>
31 #include <sys/mman.h>
32 #include <sys/resource.h>
33 #include <sched.h>
34
35 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <arpa/inet.h>
38 #include <netdb.h>
39
40 #include <ngx_auto_config.h>
41
42
43 #ifndef HAVE_SELECT
44 #define HAVE_SELECT 1
45 #endif
46
47
48 #ifndef HAVE_POLL
49 #define HAVE_POLL 1
50 #endif
51 #if (HAVE_POLL)
52 #include <poll.h>
53 #endif
54
55
56 #define ngx_setproctitle(title)
57
58
59 #define NGX_POSIX_IO 1
60
61
62 #endif /* _NGX_POSIX_CONFIG_H_INCLUDED_ */