BBN changes after the last merge. Conditionalize STACK_GUARD_SIZE.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 4 Feb 1987 17:49:56 +0000 (17:49 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 4 Feb 1987 17:49:56 +0000 (17:49 +0000)
v7/src/microcode/const.h
v8/src/microcode/const.h

index cc799aecf80e6061b8039e53ff3049acfc053f3b..db219970908c1b56d26dc038a43e690536418216 100644 (file)
@@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
 
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/const.h,v 9.21 1987/01/22 14:22:44 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/const.h,v 9.22 1987/02/04 17:49:56 jinx Exp $
  *
  * Named constants used throughout the interpreter
  *
@@ -92,9 +92,13 @@ MIT in each case. */
 #endif
 
 #define OBARRAY_SIZE           3001    /* Interning hash table */
+
+#ifndef STACK_GUARD_SIZE
 #define STACK_GUARD_SIZE       4096    /* Cells between constant and
                                           stack before overflow
                                           occurs */
+#endif
+
 #define FILE_CHANNELS          15
 #define MAX_LIST_PRINT         10
 
index 2d6c118f7f44164cb1011f8200d8e91c02703cc0..600a0ed3ab7bb1ba231a4ccd9d8c701e26ac3b84 100644 (file)
@@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
 
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/const.h,v 9.21 1987/01/22 14:22:44 jinx Exp $
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/const.h,v 9.22 1987/02/04 17:49:56 jinx Exp $
  *
  * Named constants used throughout the interpreter
  *
@@ -92,9 +92,13 @@ MIT in each case. */
 #endif
 
 #define OBARRAY_SIZE           3001    /* Interning hash table */
+
+#ifndef STACK_GUARD_SIZE
 #define STACK_GUARD_SIZE       4096    /* Cells between constant and
                                           stack before overflow
                                           occurs */
+#endif
+
 #define FILE_CHANNELS          15
 #define MAX_LIST_PRINT         10