diff options
author | Stefan Fritsch <sf@apache.org> | 2011-06-06 21:26:56 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-06-06 21:26:56 +0000 |
commit | c9fd2623da21dc757571e93f8c14344946e59ec7 (patch) | |
tree | 97105b5ef35c293af0ec20d6e04492bf889a9098 /server/util_mutex.c | |
parent | 8b98cff9529e5842e292caf5417e425f18d31038 (diff) | |
download | httpd-c9fd2623da21dc757571e93f8c14344946e59ec7.tar.gz |
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/util_mutex.c')
-rw-r--r-- | server/util_mutex.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/util_mutex.c b/server/util_mutex.c index ac5724551e..ef2ebe1aa7 100644 --- a/server/util_mutex.c +++ b/server/util_mutex.c @@ -32,6 +32,7 @@ #include "httpd.h" #include "http_main.h" #include "http_config.h" +#include "http_core.h" #include "http_log.h" #include "util_mutex.h" #if AP_NEED_SET_MUTEX_PERMS @@ -41,7 +42,9 @@ #include <unistd.h> /* getpid() */ #endif -APLOG_USE_MODULE(core); +/* we know core's module_index is 0 */ +#undef APLOG_MODULE_INDEX +#define APLOG_MODULE_INDEX AP_CORE_MODULE_INDEX AP_DECLARE(apr_status_t) ap_parse_mutex(const char *arg, apr_pool_t *pool, apr_lockmech_e *mutexmech, |