diff src/ralloc.c @ 3263:d674024a8674

[xemacs-hg @ 2006-02-27 16:29:00 by crestani] - Introduce a fancy asynchronous finalization strategy on C level. - Merge the code conditioned on MC_ALLOC into the code conditioned on NEW_GC. - Remove the possibility to free objects manually outside garbage collections when the new collector is enabled.
author crestani
date Mon, 27 Feb 2006 16:29:29 +0000
parents facf3239ba30
children 6f2158fa75ed
line wrap: on
line diff
--- a/src/ralloc.c	Sun Feb 26 22:51:04 2006 +0000
+++ b/src/ralloc.c	Mon Feb 27 16:29:29 2006 +0000
@@ -61,9 +61,9 @@
 #include "getpagesize.h"
 
 #include <string.h>
-#ifndef MC_ALLOC
+#ifndef NEW_GC
 void refill_memory_reserve (void);
-#endif /* not MC_ALLOC */
+#endif /* not NEW_GC */
 
 #else	/* Not emacs.  */
 
@@ -986,9 +986,9 @@
   *ptr = 0;
 
 #ifdef emacs
-#ifndef MC_ALLOC
+#ifndef NEW_GC
   refill_memory_reserve ();
-#endif /* not MC_ALLOC */
+#endif /* not NEW_GC */
 #endif
 }