From 6168f3bb8efe88c63981c7b72b6846b5f71ef2a3 Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Fri, 15 Aug 2003 18:35:36 +0000
Subject: [PATCH] Initial port of gencgc to Solaris.

---
 lisp/sparc-validate.h | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/lisp/sparc-validate.h b/lisp/sparc-validate.h
index 53898faf5..42f83c35d 100644
--- a/lisp/sparc-validate.h
+++ b/lisp/sparc-validate.h
@@ -1,6 +1,6 @@
 /*
 
- $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/sparc-validate.h,v 1.11 2002/10/24 20:39:00 toy Exp $
+ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/sparc-validate.h,v 1.12 2003/08/15 18:35:36 toy Exp $
 
  This code was written as part of the CMU Common Lisp project at
  Carnegie Mellon University, and has been placed in the public domain.
@@ -73,10 +73,15 @@
 #define CONTROL_STACK_SIZE  	(0x07ff8000) /* 128 MB - 32 KB, 128 MB max */
 
 #define DYNAMIC_0_SPACE_START	(0x40000000)
+/* This isn't used with GENCGC */
 #define DYNAMIC_1_SPACE_START	(0x80000000)
 
 /* The default dynamic space to allocate */
 #define DEFAULT_DYNAMIC_SPACE_SIZE  	(0x0fff8000) /* 256 MB - 32 KB */
 
 /* The maximum dynamic space that we can allocate */
+#ifdef GENCGC
 #define DYNAMIC_SPACE_SIZE      (0x3ff80000)    /* 1GB - 32 KB max */
+#else
+#define DYNAMIC_SPACE_SIZE      (0x3ff80000)    /* 1GB - 32 KB max */
+#endif
-- 
GitLab