aboutsummaryrefslogtreecommitdiff
path: root/gcc/ggc-page.c
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2011-10-16 23:24:12 +0000
committerAndi Kleen <ak@gcc.gnu.org>2011-10-16 23:24:12 +0000
commit6c995fa54c248b3c9259245b8bb9bdbea723209c (patch)
treee907c87446665849cd16bd7e0783355519d0831d /gcc/ggc-page.c
parent5958009b73d6e0048123e934a37e7f21be747086 (diff)
downloadgcc-6c995fa54c248b3c9259245b8bb9bdbea723209c.zip
gcc-6c995fa54c248b3c9259245b8bb9bdbea723209c.tar.gz
gcc-6c995fa54c248b3c9259245b8bb9bdbea723209c.tar.bz2
Increase the GGC quire size to 2MB
gcc/: 2011-10-08 Andi Kleen <ak@linux.intel.com> * ggc-page.c (GGC_QUIRE_SIZE): Increase to 512 From-SVN: r180066
Diffstat (limited to 'gcc/ggc-page.c')
-rw-r--r--gcc/ggc-page.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c
index 624f029..a218f76 100644
--- a/gcc/ggc-page.c
+++ b/gcc/ggc-page.c
@@ -462,7 +462,7 @@ static struct globals
can override this by defining GGC_QUIRE_SIZE explicitly. */
#ifndef GGC_QUIRE_SIZE
# ifdef USING_MMAP
-# define GGC_QUIRE_SIZE 256
+# define GGC_QUIRE_SIZE 512 /* 2MB for 4K pages */
# else
# define GGC_QUIRE_SIZE 16
# endif