Skip to content
Snippets Groups Projects
Commit 27ece61a authored by dtc's avatar dtc
Browse files

GENCGC support.

parent bc392187
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/alloc.c,v 1.3 1997/01/21 00:28:13 ram Exp $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/alloc.c,v 1.4 1997/11/08 15:33:48 dtc Exp $ */
#include "lisp.h" #include "lisp.h"
#include "internals.h" #include "internals.h"
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
/**************************************************************** /****************************************************************
Allocation Routines. Allocation Routines.
****************************************************************/ ****************************************************************/
#if defined WANT_CGC #if defined(WANT_CGC) || defined(GENCGC)
extern lispobj *alloc(int bytes); extern lispobj *alloc(int bytes);
#else #else
static lispobj *alloc(int bytes) static lispobj *alloc(int bytes)
......
/* /*
* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/validate.c,v 1.5 1997/01/21 00:28:13 ram Exp $ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/validate.c,v 1.6 1997/11/08 15:33:49 dtc Exp $
* *
* Memory Validation * Memory Validation
*/ */
...@@ -65,7 +65,9 @@ void validate(void) ...@@ -65,7 +65,9 @@ void validate(void)
/* Dynamic-1 Space */ /* Dynamic-1 Space */
dynamic_1_space = (lispobj *) DYNAMIC_1_SPACE_START; dynamic_1_space = (lispobj *) DYNAMIC_1_SPACE_START;
ensure_space(dynamic_1_space, DYNAMIC_SPACE_SIZE); #ifndef GENCGC
ensure_space(dynamic_1_space, DYNAMIC_SPACE_SIZE);
#endif
/* Control Stack */ /* Control Stack */
control_stack = (lispobj *) CONTROL_STACK_START; control_stack = (lispobj *) CONTROL_STACK_START;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment