2004-09-28 16:34:51 +08:00
|
|
|
|
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
#ifndef _NGX_POSIX_CONFIG_H_INCLUDED_
|
|
|
|
#define _NGX_POSIX_CONFIG_H_INCLUDED_
|
|
|
|
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if 0
|
|
|
|
#define _XOPEN_SOURCE
|
|
|
|
#define _XOPEN_SOURCE_EXTENDED 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
#if 0
|
|
|
|
#define _REENTRANT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/time.h>
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_UNISTD_H)
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <unistd.h>
|
2004-10-21 23:34:38 +08:00
|
|
|
#endif
|
|
|
|
#if (NGX_HAVE_INTTYPES_H)
|
|
|
|
#include <inttypes.h>
|
|
|
|
#endif
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h> /* offsetof() */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_SYS_FILIO_H)
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <sys/filio.h> /* FIONBIO */
|
2004-10-21 23:34:38 +08:00
|
|
|
#endif
|
|
|
|
#include <sys/ioctl.h> /* FIONBIO */
|
|
|
|
|
|
|
|
#include <sys/uio.h>
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <sys/resource.h>
|
2004-07-02 13:47:00 +08:00
|
|
|
#include <sched.h>
|
2004-06-16 01:47:16 +08:00
|
|
|
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2004-10-21 23:34:38 +08:00
|
|
|
#include <netinet/tcp.h> /* TCP_NODELAY */
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_HAVE_LIMITS_H)
|
|
|
|
#include <limits.h> /* IOV_MAX */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef IOV_MAX
|
|
|
|
#define IOV_MAX 16
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <ngx_auto_config.h>
|
|
|
|
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_POLL)
|
2004-06-16 01:47:16 +08:00
|
|
|
#include <poll.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_KQUEUE)
|
2004-10-21 23:34:38 +08:00
|
|
|
#include <sys/event.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_DEVPOLL)
|
2004-10-21 23:34:38 +08:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/devpoll.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#if (__FreeBSD__) && (__FreeBSD_version < 400017)
|
|
|
|
|
|
|
|
#include <sys/param.h> /* ALIGN() */
|
|
|
|
|
|
|
|
/* FreeBSD 3.x has no CMSG_SPACE() at all and has the broken CMSG_DATA() */
|
|
|
|
|
|
|
|
#undef CMSG_SPACE
|
|
|
|
#define CMSG_SPACE(l) (ALIGN(sizeof(struct cmsghdr)) + ALIGN(l))
|
|
|
|
|
|
|
|
#undef CMSG_DATA
|
|
|
|
#define CMSG_DATA(cmsg) ((u_char *)(cmsg) + ALIGN(sizeof(struct cmsghdr)))
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
#if (NGX_HAVE_SETPROCTITLE)
|
|
|
|
#define ngx_setproctitle setproctitle
|
|
|
|
#else
|
2004-06-16 01:47:16 +08:00
|
|
|
#define ngx_setproctitle(title)
|
2004-11-21 03:52:20 +08:00
|
|
|
#endif
|
2004-06-16 01:47:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define NGX_POSIX_IO 1
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _NGX_POSIX_CONFIG_H_INCLUDED_ */
|