diff options
author | Yann Ylavic <ylavic@apache.org> | 2018-01-18 19:40:09 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2018-01-18 19:40:09 +0100 |
commit | 85695a624a68d45cbf5276d6155dfdefddbd7b09 (patch) | |
tree | abcbaa4b11108e0470865f42476e0e03294f250d /server/mpm_unix.c | |
parent | Follow up to r1821526: style, no functional change. (diff) | |
download | apache2-85695a624a68d45cbf5276d6155dfdefddbd7b09.tar.xz apache2-85695a624a68d45cbf5276d6155dfdefddbd7b09.zip |
Follow up to r1821526: rename ap_queue_info_get_idlers to ap_queue_info_num_idlers.
[Reverted by r1821619]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1821541 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm_unix.c')
-rw-r--r-- | server/mpm_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm_unix.c b/server/mpm_unix.c index 0f87fc5a8a..b7e16e5024 100644 --- a/server/mpm_unix.c +++ b/server/mpm_unix.c @@ -1301,7 +1301,7 @@ apr_status_t ap_queue_info_wait_for_idler(fd_queue_info_t *queue_info, } } -apr_uint32_t ap_queue_info_get_idlers(fd_queue_info_t *queue_info) +apr_uint32_t ap_queue_info_num_idlers(fd_queue_info_t *queue_info) { apr_uint32_t val; val = apr_atomic_read32(&queue_info->idlers); |