You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by sf...@apache.org on 2011/06/01 21:48:58 UTC

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

Author: sf
Date: Wed Jun  1 19:48:57 2011
New Revision: 1130274

URL: http://svn.apache.org/viewvc?rev=1130274&view=rev
Log:
extend comment a bit

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=1130274&r1=1130273&r2=1130274&view=diff
==============================================================================
--- apr/apr/trunk/memory/unix/apr_pools.c (original)
+++ apr/apr/trunk/memory/unix/apr_pools.c Wed Jun  1 19:48:57 2011
@@ -48,9 +48,9 @@
  */
 
 /*
- * XXX: This is not optimal for machines with large pagesize, but currently
- * XXX: the sink is assumed to be index 0, so MIN_ALLOC must be at least two
- * XXX: pages.
+ * XXX: This is not optimal when using --enable-allocator-uses-mmap on
+ * XXX: machines with large pagesize, but currently the sink is assumed
+ * XXX: to be index 0, so MIN_ALLOC must be at least two pages.
  */
 #define MIN_ALLOC (2 * BOUNDARY_SIZE)
 #define MAX_INDEX   20