From 19c3711f3baf58f6293b6ad11387f44332ec0433 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Wed, 4 Feb 1987 17:49:56 +0000 Subject: [PATCH] BBN changes after the last merge. Conditionalize STACK_GUARD_SIZE. --- v7/src/microcode/const.h | 6 +++++- v8/src/microcode/const.h | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/const.h b/v7/src/microcode/const.h index cc799aecf..db2199709 100644 --- a/v7/src/microcode/const.h +++ b/v7/src/microcode/const.h @@ -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 diff --git a/v8/src/microcode/const.h b/v8/src/microcode/const.h index 2d6c118f7..600a0ed3a 100644 --- a/v8/src/microcode/const.h +++ b/v8/src/microcode/const.h @@ -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 -- 2.25.1