comparison src/os/unix/ngx_freebsd_config.h @ 262:8c5bdde0d9f0

nginx-0.0.2-2004-02-18-18:45:21 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 18 Feb 2004 15:45:21 +0000
parents 8e39cab6abd5
children 83205e0b5522
comparison
equal deleted inserted replaced
261:bdd631bf1a1c 262:8c5bdde0d9f0
9 #include <stdio.h> 9 #include <stdio.h>
10 #include <errno.h> 10 #include <errno.h>
11 #include <fcntl.h> 11 #include <fcntl.h>
12 #include <string.h> 12 #include <string.h>
13 #include <signal.h> 13 #include <signal.h>
14 #include <limits.h>
14 #include <sys/types.h> 15 #include <sys/types.h>
15 #include <sys/stat.h> 16 #include <sys/stat.h>
16 #include <sys/time.h> 17 #include <sys/time.h>
17 #include <sys/uio.h> 18 #include <sys/uio.h>
18 #include <sys/ioctl.h> 19 #include <sys/ioctl.h>
69 #if (HAVE_KQUEUE) 70 #if (HAVE_KQUEUE)
70 #include <sys/event.h> 71 #include <sys/event.h>
71 #endif 72 #endif
72 73
73 74
75 #ifndef IOV_MAX
76 #define IOV_MAX 1024
77 #endif
78
79
74 #ifndef HAVE_INHERITED_NONBLOCK 80 #ifndef HAVE_INHERITED_NONBLOCK
75 #define HAVE_INHERITED_NONBLOCK 1 81 #define HAVE_INHERITED_NONBLOCK 1
76 #endif 82 #endif
77 83
78 84