From: Rainer Jung Date: Sat, 12 Nov 2011 05:59:13 +0000 (+0000) Subject: Folloup on r1201158: New MaxMemFree was meant X-Git-Tag: 2.5.0-alpha~7915 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99bf95deb557335739c4526c94d0e99297f06443;p=apache Folloup on r1201158: New MaxMemFree was meant to be 2048, not 4096. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1201202 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index d393ba6083..6791cca96b 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -147,7 +147,7 @@ int ap_graceful_shutdown_timeout; AP_DECLARE_DATA apr_uint32_t ap_max_mem_free; apr_size_t ap_thread_stacksize; -#define ALLOCATOR_MAX_FREE_DEFAULT (4096*1024) +#define ALLOCATOR_MAX_FREE_DEFAULT (2048*1024) /* Set defaults for config directives implemented here. This is * called from core's pre-config hook, so MPMs which need to override