comparison src/os/unix/ngx_posix_config.h @ 355:0fb6c53fb135

nginx-0.0.7-2004-06-15-21:47:16 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 15 Jun 2004 17:47:16 +0000
parents
children 213f17e9f776
comparison
equal deleted inserted replaced
354:eaf1f651cf86 355:0fb6c53fb135
1 #ifndef _NGX_POSIX_CONFIG_H_INCLUDED_
2 #define _NGX_POSIX_CONFIG_H_INCLUDED_
3
4
5 #include <sys/types.h>
6 #include <sys/time.h>
7 #include <unistd.h>
8 #include <stdarg.h>
9 #include <stddef.h> /* offsetof() */
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <errno.h>
13 #include <string.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <grp.h>
17 #include <dirent.h>
18
19 #include <sys/uio.h>
20 #include <sys/filio.h> /* FIONBIO */
21 #include <sys/stat.h>
22 #include <fcntl.h>
23
24 #include <sys/wait.h>
25 #include <sys/mman.h>
26 #include <sys/resource.h>
27
28 #include <sys/socket.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <netdb.h>
32
33 #include <ngx_auto_config.h>
34
35
36 #ifndef HAVE_SELECT
37 #define HAVE_SELECT 1
38 #endif
39
40
41 #ifndef HAVE_POLL
42 #define HAVE_POLL 1
43 #endif
44 #if (HAVE_POLL)
45 #include <poll.h>
46 #endif
47
48
49 #define ngx_setproctitle(title)
50
51
52 #define NGX_POSIX_IO 1
53
54
55 #endif /* _NGX_POSIX_CONFIG_H_INCLUDED_ */