From: Jim Jagielski Date: Tue, 3 Jun 2014 15:49:25 +0000 (+0000) Subject: fold in performance hack from eventopt X-Git-Tag: 2.5.0-alpha~4114 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3fbdef6505f776a6c47a1cb01d48535f40dac0b;p=apache fold in performance hack from eventopt git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1599625 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/event/event.c b/server/mpm/event/event.c index 4d960e9d5c..d307abecde 100644 --- a/server/mpm/event/event.c +++ b/server/mpm/event/event.c @@ -57,6 +57,8 @@ #include "apr_atomic.h" #define APR_WANT_STRFUNC #include "apr_want.h" +#include "apr_env.h" + #include "apr_version.h" #include @@ -2418,6 +2420,25 @@ static void join_start_thread(apr_thread_t * start_thread_id) } } +static void force_set_tz(apr_pool_t *p) { + /* If the TZ variable is unset, many operationg systems, + * such as Linux, will at runtime read from /etc/localtime + * and call fstat on it. + * + * By forcing the time zone to UTC if it is unset, we gain + * about 2% in raw requests/second (since we format log files + * in the local time, if present) + * + * For more info, see: + * + */ + char *v = NULL; + + if (apr_env_get(&v, "TZ", p) != APR_SUCCESS) { + apr_env_set("TZ", "UTC+0", p); + } +} + static void child_main(int child_num_arg) { apr_thread_t **threads; @@ -3566,6 +3587,7 @@ static void event_hooks(apr_pool_t * p) */ static const char *const aszSucc[] = { "core.c", NULL }; one_process = 0; + force_set_tz(p); ap_hook_open_logs(event_open_logs, NULL, aszSucc, APR_HOOK_REALLY_FIRST); /* we need to set the MPM state before other pre-config hooks use MPM query