cvsuser 02/05/14 21:07:20
Modified: . memory.c
Log:
Looks like this patch never made it in. Initialize the sized buffer pools.
Revision Changes Path
1.34 +3 -1 parrot/memory.c
Index: memory.c
===================================================================
RCS file: /home/perlcvs/parrot/memory.c,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -w -r1.33 -r1.34
--- memory.c 5 May 2002 04:02:59 -0000 1.33
+++ memory.c 15 May 2002 04:07:20 -0000 1.34
@@ -1,7 +1,7 @@
/* memory.c
* Copyright: (When this is determined...it will go here)
* CVS Info
- * $Id: memory.c,v 1.33 2002/05/05 04:02:59 jgoff Exp $
+ * $Id: memory.c,v 1.34 2002/05/15 04:07:20 sfink Exp $
* Overview:
* The memory (mem) API handles memory allocation
* Data Structure and Algorithms:
@@ -100,6 +100,8 @@
{
size_t temp_len;
interpreter->arena_base = mem_sys_allocate(sizeof(struct Arenas));
+ interpreter->arena_base->sized_header_pools = NULL;
+ interpreter->arena_base->num_sized = 0;
Parrot_initialize_memory_pools(interpreter);
Parrot_initialize_resource_pools(interpreter);