diff options
author | Ryan Bloom <rbb@apache.org> | 2001-09-19 01:09:12 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-09-19 01:09:12 +0200 |
commit | 40dc2ab17366c696f0bac1d122115823a1736559 (patch) | |
tree | 75f188d6f59057625cea67652d9cfcb708635034 /server/mpm/worker/fdqueue.h | |
parent | Switch back to SIGUSR1 for graceful restarts on all platforms that (diff) | |
download | apache2-40dc2ab17366c696f0bac1d122115823a1736559.tar.xz apache2-40dc2ab17366c696f0bac1d122115823a1736559.zip |
Turn the worker MPM's queue into a LIFO. This may
improve cache-hit performance under some conditions.
Submitted by: Aaron Bannert <aaron@clove.org>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91077 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/worker/fdqueue.h')
-rw-r--r-- | server/mpm/worker/fdqueue.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/server/mpm/worker/fdqueue.h b/server/mpm/worker/fdqueue.h index a0efaa003f..7ac951258b 100644 --- a/server/mpm/worker/fdqueue.h +++ b/server/mpm/worker/fdqueue.h @@ -81,7 +81,6 @@ struct fd_queue_elem_t { typedef struct fd_queue_elem_t fd_queue_elem_t; struct fd_queue_t { - int head; int tail; fd_queue_elem_t *data; int bounds; |