From 04e75dd82a91a946c8a6e94526e346bdc696650b Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Tue, 11 Oct 2011 14:36:53 -0600 Subject: [PATCH] revert GC block cache to reasonable size --- src/racket/gc2/alloc_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/racket/gc2/alloc_cache.c b/src/racket/gc2/alloc_cache.c index 786fdcac3d..ea0210a34e 100644 --- a/src/racket/gc2/alloc_cache.c +++ b/src/racket/gc2/alloc_cache.c @@ -13,7 +13,7 @@ #define BLOCKFREE_UNMAP_AGE 3 /* Controls size of the cache */ -#define BLOCKFREE_CACHE_SIZE 3000 +#define BLOCKFREE_CACHE_SIZE 96 /* Controls how many extra pages are requested from OS at a time: */ #define CACHE_SEED_PAGES 16