src/os/unix/ngx_linux_init.c - nginx-1.7.10

Global variables defined

Functions defined

Source code


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


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>


  7. u_char  ngx_linux_kern_ostype[50];
  8. u_char  ngx_linux_kern_osrelease[50];

  9. int     ngx_linux_rtsig_max;


  10. static ngx_os_io_t ngx_linux_io = {
  11.     ngx_unix_recv,
  12.     ngx_readv_chain,
  13.     ngx_udp_unix_recv,
  14.     ngx_unix_send,
  15. #if (NGX_HAVE_SENDFILE)
  16.     ngx_linux_sendfile_chain,
  17.     NGX_IO_SENDFILE
  18. #else
  19.     ngx_writev_chain,
  20.     0
  21. #endif
  22. };


  23. ngx_int_t
  24. ngx_os_specific_init(ngx_log_t *log)
  25. {
  26.     struct utsname  u;

  27.     if (uname(&u) == -1) {
  28.         ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, "uname() failed");
  29.         return NGX_ERROR;
  30.     }

  31.     (void) ngx_cpystrn(ngx_linux_kern_ostype, (u_char *) u.sysname,
  32.                        sizeof(ngx_linux_kern_ostype));

  33.     (void) ngx_cpystrn(ngx_linux_kern_osrelease, (u_char *) u.release,
  34.                        sizeof(ngx_linux_kern_osrelease));

  35. #if (NGX_HAVE_RTSIG)
  36.     {
  37.     int        name[2];
  38.     size_t     len;
  39.     ngx_err_t  err;

  40.     name[0] = CTL_KERN;
  41.     name[1] = KERN_RTSIGMAX;
  42.     len = sizeof(ngx_linux_rtsig_max);

  43.     if (sysctl(name, 2, &ngx_linux_rtsig_max, &len, NULL, 0) == -1) {
  44.         err = ngx_errno;

  45.         if (err != NGX_ENOTDIR && err != NGX_ENOSYS) {
  46.             ngx_log_error(NGX_LOG_ALERT, log, err,
  47.                           "sysctl(KERN_RTSIGMAX) failed");

  48.             return NGX_ERROR;
  49.         }

  50.         ngx_linux_rtsig_max = 0;
  51.     }

  52.     }
  53. #endif

  54.     ngx_os_io = ngx_linux_io;

  55.     return NGX_OK;
  56. }


  57. void
  58. ngx_os_specific_status(ngx_log_t *log)
  59. {
  60.     ngx_log_error(NGX_LOG_NOTICE, log, 0, "OS: %s %s",
  61.                   ngx_linux_kern_ostype, ngx_linux_kern_osrelease);

  62. #if (NGX_HAVE_RTSIG)
  63.     ngx_log_error(NGX_LOG_NOTICE, log, 0, "sysctl(KERN_RTSIGMAX): %d",
  64.                   ngx_linux_rtsig_max);
  65. #endif
  66. }