[svn:parrot] r43727 - trunk/src/pmc

darbelo at svn.parrot.org darbelo at svn.parrot.org
Fri Feb 5 20:10:20 UTC 2010


Author: darbelo
Date: Fri Feb  5 20:10:16 2010
New Revision: 43727
URL: https://trac.parrot.org/parrot/changeset/43727

Log:
Remove a unnecessary #define, this happen on another file now.

Modified:
   trunk/src/pmc/imageio.pmc

Modified: trunk/src/pmc/imageio.pmc
==============================================================================
--- trunk/src/pmc/imageio.pmc	Fri Feb  5 14:44:08 2010	(r43726)
+++ trunk/src/pmc/imageio.pmc	Fri Feb  5 20:10:16 2010	(r43727)
@@ -14,11 +14,6 @@
 
 #define GROW_TO_16_BYTE_BOUNDARY(size) ((size) + ((size) % 16 ? 16 - (size) % 16 : 0))
 
-/* when thawing a string longer then this size, we first do a GC run and then
- * block GC - the system can't give us more headers */
-
-#define THAW_BLOCK_GC_SIZE 100000
-
 /* preallocate freeze image for aggregates with this estimation */
 #define FREEZE_BYTES_PER_ITEM 9
 


More information about the parrot-commits mailing list