#if (NGX_STAT_STUB)
(*ngx_stat_accepted)++;
- (*ngx_stat_active)++;
#endif
ngx_accept_disabled = (ngx_uint_t) s + NGX_ACCEPT_THRESHOLD
return;
}
+#if (NGX_STAT_STUB)
+ (*ngx_stat_active)++;
+#endif
+
/* set a blocking mode for aio and non-blocking mode for the others */
if (ngx_inherited_nonblocking) {
* Besides we free this memory as soon as the gzipping will complete
* and do not wait while a whole response will be sent to a client.
*
- * 8K is for zlib deflate_state (~6K).
- *
- * TODO: 64-bit, autoconf of deflate_state size
+ * 8K is for zlib deflate_state. It takes 5816 bytes on x86
+ * and 5920 bytes on amd64.
*/
ctx->allocated = 8192 + (1 << (wbits + 2)) + (1 << (memlevel + 9));
if (alloc % 512 != 0) {
/*
- * allocate the zlib deflate_state, it takes about 6K on x86,
- * we allocate 8K
+ * The zlib deflate_state allocation, it takes 5816 bytes on x86
+ * and 5920 bytes on amd64.
+ * We allocate 8K.
*/
alloc = (alloc + ngx_pagesize - 1) & ~(ngx_pagesize - 1);