diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2020-09-29 16:50:39 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2020-10-11 12:19:27 -0400 |
commit | 81029b8b51ae74fb12fa1163db7aad8d06f4a68b (patch) | |
tree | cb8e67aeb11ed783a9c7011f55e721f0b587801f /src/gw_backend.h | |
parent | 8b382a81c737f13e28572cf7e85e8a229a8a53c9 (diff) | |
download | lighttpd-git-81029b8b51ae74fb12fa1163db7aad8d06f4a68b.tar.gz |
[multiple] inline chunkqueue where always alloc'd
inline struct chunkqueue where always allocated in other structs
(memory locality)
Diffstat (limited to 'src/gw_backend.h')
-rw-r--r-- | src/gw_backend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gw_backend.h b/src/gw_backend.h index bd9629e5..aed81265 100644 --- a/src/gw_backend.h +++ b/src/gw_backend.h @@ -302,8 +302,8 @@ typedef struct gw_handler_ctx { time_t state_timestamp; chunkqueue *rb; /* read queue */ - chunkqueue *wb; /* write queue */ off_t wb_reqlen; + chunkqueue wb; /* write queue */ buffer *response; |