comparison src/os/unix/ngx_freebsd_config.h @ 267:83205e0b5522

nginx-0.0.2-2004-02-24-20:31:46 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 24 Feb 2004 17:31:46 +0000
parents 8c5bdde0d9f0
children 0fb6c53fb135
comparison
equal deleted inserted replaced
266:5238e93961a1 267:83205e0b5522
27 #include <arpa/inet.h> 27 #include <arpa/inet.h>
28 #include <pwd.h> 28 #include <pwd.h>
29 #include <grp.h> 29 #include <grp.h>
30 #include <netdb.h> 30 #include <netdb.h>
31 #include <dirent.h> 31 #include <dirent.h>
32 #include <libutil.h> /* setproctitle() brefore 4.1 */
32 #include <osreldate.h> 33 #include <osreldate.h>
33 34
34 #include <ngx_auto_config.h> 35 #include <ngx_auto_config.h>
35 36
36 37
70 #if (HAVE_KQUEUE) 71 #if (HAVE_KQUEUE)
71 #include <sys/event.h> 72 #include <sys/event.h>
72 #endif 73 #endif
73 74
74 75
76 #if (__FreeBSD_version < 430000 || __FreeBSD_version < 500012)
77
78 pid_t rfork_thread(int flags, void *stack, int (*func)(void *arg), void *arg);
79
80 #endif
81
75 #ifndef IOV_MAX 82 #ifndef IOV_MAX
76 #define IOV_MAX 1024 83 #define IOV_MAX 1024
77 #endif 84 #endif
78 85
79 86