From 99bf95deb557335739c4526c94d0e99297f06443 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Sat, 12 Nov 2011 05:59:13 +0000 Subject: [PATCH] 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 --- server/mpm_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0