From: Guillermo J. Rozas Date: Wed, 4 Feb 1987 17:49:56 +0000 (+0000) Subject: BBN changes after the last merge. Conditionalize STACK_GUARD_SIZE. X-Git-Tag: 20090517-FFI~13723 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=19c3711f3baf58f6293b6ad11387f44332ec0433;p=mit-scheme.git BBN changes after the last merge. Conditionalize STACK_GUARD_SIZE. --- 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