diff runtime/fixed_alloc.h @ 67:d1569087348f

Some small optimizations
author Mike Pavone <pavone@retrodev.com>
date Mon, 07 Jun 2010 01:15:16 -0400
parents a24eb366195c
children 5a195ee08eac
line wrap: on
line diff
--- a/runtime/fixed_alloc.h	Sun Jun 06 20:29:10 2010 -0400
+++ b/runtime/fixed_alloc.h	Mon Jun 07 01:15:16 2010 -0400
@@ -10,7 +10,7 @@
 #define MAX_SIZE   (BLOCK_SIZE/32)
 #define STRIDE     (BLOCK_SIZE/1024)
 #define MIN_SIZE   (BLOCK_SIZE/1024)
-#define MAX_FREE   16
+#define MAX_FREE   64
 
 #define ADJUST_SIZE(requested) (((requested)+(STRIDE-1)) & (~(STRIDE-1)))