mirror of
https://github.com/nginx/nginx.git
synced 2025-01-23 21:23:00 +08:00
merge r3037:
the flags should be bit-wide only
This commit is contained in:
parent
caf21c99d8
commit
80d70e434d
@ -75,13 +75,13 @@ typedef struct {
|
|||||||
ngx_chain_t *free;
|
ngx_chain_t *free;
|
||||||
ngx_chain_t *busy;
|
ngx_chain_t *busy;
|
||||||
|
|
||||||
unsigned sendfile;
|
unsigned sendfile:1;
|
||||||
unsigned directio;
|
unsigned directio:1;
|
||||||
#if (NGX_HAVE_ALIGNED_DIRECTIO)
|
#if (NGX_HAVE_ALIGNED_DIRECTIO)
|
||||||
unsigned unaligned;
|
unsigned unaligned:1;
|
||||||
#endif
|
#endif
|
||||||
unsigned need_in_memory;
|
unsigned need_in_memory:1;
|
||||||
unsigned need_in_temp;
|
unsigned need_in_temp:1;
|
||||||
|
|
||||||
ngx_pool_t *pool;
|
ngx_pool_t *pool;
|
||||||
ngx_int_t allocated;
|
ngx_int_t allocated;
|
||||||
|
Loading…
Reference in New Issue
Block a user