src/core/ngx_cycle.h - nginx-1.7.10

Data types defined

Macros defined

Source code


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


  5. #ifndef _NGX_CYCLE_H_INCLUDED_
  6. #define _NGX_CYCLE_H_INCLUDED_


  7. #include <ngx_config.h>
  8. #include <ngx_core.h>


  9. #ifndef NGX_CYCLE_POOL_SIZE
  10. #define NGX_CYCLE_POOL_SIZE     NGX_DEFAULT_POOL_SIZE
  11. #endif


  12. #define NGX_DEBUG_POINTS_STOP   1
  13. #define NGX_DEBUG_POINTS_ABORT  2


  14. typedef struct ngx_shm_zone_s  ngx_shm_zone_t;

  15. typedef ngx_int_t (*ngx_shm_zone_init_pt) (ngx_shm_zone_t *zone, void *data);

  16. struct ngx_shm_zone_s {
  17.     void                     *data;
  18.     ngx_shm_t                 shm;
  19.     ngx_shm_zone_init_pt      init;
  20.     void                     *tag;
  21. };


  22. struct ngx_cycle_s {
  23.     void                  ****conf_ctx;
  24.     ngx_pool_t               *pool;

  25.     ngx_log_t                *log;
  26.     ngx_log_t                 new_log;

  27.     ngx_uint_t                log_use_stderr;  /* unsigned  log_use_stderr:1; */

  28.     ngx_connection_t        **files;
  29.     ngx_connection_t         *free_connections;
  30.     ngx_uint_t                free_connection_n;

  31.     ngx_queue_t               reusable_connections_queue;

  32.     ngx_array_t               listening;
  33.     ngx_array_t               paths;
  34.     ngx_list_t                open_files;
  35.     ngx_list_t                shared_memory;

  36.     ngx_uint_t                connection_n;
  37.     ngx_uint_t                files_n;

  38.     ngx_connection_t         *connections;
  39.     ngx_event_t              *read_events;
  40.     ngx_event_t              *write_events;

  41.     ngx_cycle_t              *old_cycle;

  42.     ngx_str_t                 conf_file;
  43.     ngx_str_t                 conf_param;
  44.     ngx_str_t                 conf_prefix;
  45.     ngx_str_t                 prefix;
  46.     ngx_str_t                 lock_file;
  47.     ngx_str_t                 hostname;
  48. };


  49. typedef struct {
  50.      ngx_flag_t               daemon;
  51.      ngx_flag_t               master;

  52.      ngx_msec_t               timer_resolution;

  53.      ngx_int_t                worker_processes;
  54.      ngx_int_t                debug_points;

  55.      ngx_int_t                rlimit_nofile;
  56.      ngx_int_t                rlimit_sigpending;
  57.      off_t                    rlimit_core;

  58.      int                      priority;

  59.      ngx_uint_t               cpu_affinity_n;
  60.      uint64_t                *cpu_affinity;

  61.      char                    *username;
  62.      ngx_uid_t                user;
  63.      ngx_gid_t                group;

  64.      ngx_str_t                working_directory;
  65.      ngx_str_t                lock_file;

  66.      ngx_str_t                pid;
  67.      ngx_str_t                oldpid;

  68.      ngx_array_t              env;
  69.      char                   **environment;

  70. #if (NGX_THREADS)
  71.      ngx_int_t                worker_threads;
  72.      size_t                   thread_stack_size;
  73. #endif

  74. } ngx_core_conf_t;


  75. typedef struct {
  76.      ngx_pool_t              *pool;   /* pcre's malloc() pool */
  77. } ngx_core_tls_t;


  78. #define ngx_is_init_cycle(cycle)  (cycle->conf_ctx == NULL)


  79. ngx_cycle_t *ngx_init_cycle(ngx_cycle_t *old_cycle);
  80. ngx_int_t ngx_create_pidfile(ngx_str_t *name, ngx_log_t *log);
  81. void ngx_delete_pidfile(ngx_cycle_t *cycle);
  82. ngx_int_t ngx_signal_process(ngx_cycle_t *cycle, char *sig);
  83. void ngx_reopen_files(ngx_cycle_t *cycle, ngx_uid_t user);
  84. char **ngx_set_environment(ngx_cycle_t *cycle, ngx_uint_t *last);
  85. ngx_pid_t ngx_exec_new_binary(ngx_cycle_t *cycle, char *const *argv);
  86. uint64_t ngx_get_cpu_affinity(ngx_uint_t n);
  87. ngx_shm_zone_t *ngx_shared_memory_add(ngx_conf_t *cf, ngx_str_t *name,
  88.     size_t size, void *tag);


  89. extern volatile ngx_cycle_t  *ngx_cycle;
  90. extern ngx_array_t            ngx_old_cycles;
  91. extern ngx_module_t           ngx_core_module;
  92. extern ngx_uint_t             ngx_test_config;
  93. extern ngx_uint_t             ngx_quiet_mode;
  94. #if (NGX_THREADS)
  95. extern ngx_tls_key_t          ngx_core_tls_key;
  96. #endif


  97. #endif /* _NGX_CYCLE_H_INCLUDED_ */