src/os/unix/ngx_solaris_config.h - nginx-1.7.10

Macros defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #ifndef _NGX_SOLARIS_CONFIG_H_INCLUDED_
  6. #define _NGX_SOLARIS_CONFIG_H_INCLUDED_


  7. #ifndef _REENTRANT
  8. #define _REENTRANT
  9. #endif

  10. #define _FILE_OFFSET_BITS  64   /* must be before <sys/types.h> */

  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 <ctype.h>
  19. #include <errno.h>
  20. #include <string.h>
  21. #include <signal.h>
  22. #include <pwd.h>
  23. #include <grp.h>
  24. #include <dirent.h>
  25. #include <glob.h>
  26. #include <time.h>
  27. #include <sys/statvfs.h>        /* statvfs() */

  28. #include <sys/filio.h>          /* FIONBIO */
  29. #include <sys/uio.h>
  30. #include <sys/stat.h>
  31. #include <fcntl.h>

  32. #include <sys/wait.h>
  33. #include <sys/mman.h>
  34. #include <sys/resource.h>
  35. #include <sched.h>

  36. #include <sys/socket.h>
  37. #include <netinet/in.h>
  38. #include <netinet/tcp.h>        /* TCP_NODELAY */
  39. #include <arpa/inet.h>
  40. #include <netdb.h>
  41. #include <sys/un.h>

  42. #include <sys/systeminfo.h>
  43. #include <limits.h>             /* IOV_MAX */
  44. #include <inttypes.h>
  45. #include <crypt.h>

  46. #define NGX_ALIGNMENT  _MAX_ALIGNMENT

  47. #include <ngx_auto_config.h>


  48. #if (NGX_HAVE_POSIX_SEM)
  49. #include <semaphore.h>
  50. #endif


  51. #if (NGX_HAVE_POLL)
  52. #include <poll.h>
  53. #endif


  54. #if (NGX_HAVE_DEVPOLL)
  55. #include <sys/ioctl.h>
  56. #include <sys/devpoll.h>
  57. #endif


  58. #if (NGX_HAVE_EVENTPORT)
  59. #include <port.h>
  60. #endif


  61. #if (NGX_HAVE_SENDFILE)
  62. #include <sys/sendfile.h>
  63. #endif


  64. #define NGX_LISTEN_BACKLOG           511


  65. #ifndef NGX_HAVE_INHERITED_NONBLOCK
  66. #define NGX_HAVE_INHERITED_NONBLOCK  1
  67. #endif


  68. #ifndef NGX_HAVE_SO_SNDLOWAT
  69. /* setsockopt(SO_SNDLOWAT) returns ENOPROTOOPT */
  70. #define NGX_HAVE_SO_SNDLOWAT         0
  71. #endif


  72. #define NGX_HAVE_OS_SPECIFIC_INIT    1
  73. #define ngx_debug_init()


  74. extern char **environ;


  75. #endif /* _NGX_SOLARIS_CONFIG_H_INCLUDED_ */