You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2009/03/26 14:10:18 UTC

svn commit: r758622 - /apr/apr/trunk/memory/unix/apr_pools.c

Author: rpluem
Date: Thu Mar 26 13:10:14 2009
New Revision: 758622

URL: http://svn.apache.org/viewvc?rev=758622&view=rev
Log:
* 512 is a more reasonable size for the list.
  Plus the struct now fits in an 8k page.

Modified:
    apr/apr/trunk/memory/unix/apr_pools.c

Modified: apr/apr/trunk/memory/unix/apr_pools.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/memory/unix/apr_pools.c?rev=758622&r1=758621&r2=758622&view=diff
==============================================================================
--- apr/apr/trunk/memory/unix/apr_pools.c (original)
+++ apr/apr/trunk/memory/unix/apr_pools.c Thu Mar 26 13:10:14 2009
@@ -461,7 +461,7 @@
 #endif /* APR_POOL_DEBUG */
 
 typedef struct block_list_t block_list_t;
-#define BLOCK_LIST_ENTRIES_MAX (2048)
+#define BLOCK_LIST_ENTRIES_MAX (512)
 struct block_list_t {
     block_list_t *next;
     size_t offset;