diff options
author | Stefan Fritsch <sf@apache.org> | 2011-06-06 23:26:56 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-06-06 23:26:56 +0200 |
commit | c9fd2623da21dc757571e93f8c14344946e59ec7 (patch) | |
tree | 97105b5ef35c293af0ec20d6e04492bf889a9098 /server/mpm/winnt | |
parent | TraceEnable is per-virtualhost, not just per-server. (diff) | |
download | apache2-c9fd2623da21dc757571e93f8c14344946e59ec7.tar.xz apache2-c9fd2623da21dc757571e93f8c14344946e59ec7.zip |
Introduce ap_(get|set)_core_module_config() functions/macros and use them
everywhere.
We know that the core module has module_index 0. Therefore we can save
some pointer operations in ap_get_module_config(cv, &core_module) and
ap_set_module_config(cv, &core_module, val). As these are called rather often,
this may actually have some (small) measurable effect.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1132781 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/winnt')
-rw-r--r-- | server/mpm/winnt/child.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/mpm/winnt/child.c b/server/mpm/winnt/child.c index e9ba5b1376..299b9b3f30 100644 --- a/server/mpm/winnt/child.c +++ b/server/mpm/winnt/child.c @@ -293,8 +293,7 @@ static unsigned int __stdcall winnt_accept(void *lr_) #endif u_long zero = 0; - core_sconf = ap_get_module_config(ap_server_conf->module_config, - &core_module); + core_sconf = ap_get_core_module_config(ap_server_conf->module_config); accf_name = apr_table_get(core_sconf->accf_map, lr->protocol); if (strcmp(accf_name, "data") == 0) |