*** empty log message ***
authorphil <none@none>
Wed, 11 Nov 1998 19:41:52 +0000 (19:41 +0000)
committerphil <none@none>
Wed, 11 Nov 1998 19:41:52 +0000 (19:41 +0000)
mm/Makefile
mm/heap2.c

index eed680aba899ef8434e72db22ab86d5b5155871f..8800af51ef0d79bfba6f0ec761e0193eba89f262 100644 (file)
@@ -1,5 +1,5 @@
 # cacao/mm/Makefile
-# $Id: Makefile 61 1998-11-11 19:40:23Z phil $
+# $Id: Makefile 62 1998-11-11 19:41:52Z phil $
 
 AR = ar
 COMBINE = $(AR) rcs mm.o
@@ -10,7 +10,7 @@ clean:
        rm -rf *.o *~
 
 # choose gc1 for the old collector, gc2 for the new one
-actualtarget: gc2
+actualtarget: gc1
 
 
 
index 4e73315ed6e80552dc1a66d1528fe5e5adab73e0..bd28af549bf4c63df9960f97e44634e536e57e94 100644 (file)
@@ -239,7 +239,7 @@ heap_allocate (SIZE           in_length,
        if (finalizer)
                fprintf(stderr, "finalizer detected\n");
 
-#if VERBOSITY >= VERBOSITY_LIFESPAN
+#if VERBOSITY >= VERBOSITY_LIFESPAN && 0
        /* perform garbage collection to collect data for lifespan analysis */
        if (heap_top > heap_base)
                gc_call();
@@ -310,7 +310,7 @@ heap_allocate (SIZE           in_length,
        
  failure:
        /* 3.b. failure to allocate enough memory... fail gracefully */
-#if VERBOSITY >= VERBOSITY_MESSAGE
+#if VERBOSITY >= VERBOSITY_MESSAGE && 0
        fprintf(stderr, 
                        "heap2.c: heap_allocate was unable to allocate 0x%lx bytes on the VM heap.\n",
                        length);