summaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/nginx.c1
-rw-r--r--src/core/nginx.h4
-rw-r--r--src/core/ngx_config.h1
3 files changed, 1 insertions, 5 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c
index 9c35e089e..3e3a07271 100644
--- a/src/core/nginx.c
+++ b/src/core/nginx.c
@@ -65,7 +65,6 @@ ngx_module_t ngx_core_module = {
ngx_int_t ngx_max_module;
-ngx_atomic_t ngx_connection_counter;
ngx_int_t ngx_process;
ngx_pid_t ngx_pid;
diff --git a/src/core/nginx.h b/src/core/nginx.h
index 224605a32..61a6f50e0 100644
--- a/src/core/nginx.h
+++ b/src/core/nginx.h
@@ -12,9 +12,5 @@
extern ngx_module_t ngx_core_module;
-extern ngx_atomic_t ngx_connection_counter;
-
-extern ngx_int_t ngx_process;
-
#endif /* _NGINX_H_INCLUDED_ */
diff --git a/src/core/ngx_config.h b/src/core/ngx_config.h
index eb3cacbe8..4e3e77bdd 100644
--- a/src/core/ngx_config.h
+++ b/src/core/ngx_config.h
@@ -83,6 +83,7 @@ typedef int ngx_flag_t;
/* TODO: auto */
#define NGX_INT32_LEN sizeof("-2147483648") - 1
+#define NGX_INT64_LEN sizeof("-9223372036854775808") - 1
#define NGX_TIME_T_LEN sizeof("-2147483648") - 1
#define NGX_OFF_T_LEN sizeof("-9223372036854775808") - 1