From 45c65d295bb5c4b4b3c835e4db03b62ac861edb1 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Mon, 20 Nov 2000 02:59:20 +0100 Subject: [PATCH] Had to tune up the C stack margin a bit. Rev: src/interpret.c:1.174 --- src/interpret.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interpret.c b/src/interpret.c index ca18156dbd..69d368e225 100644 --- a/src/interpret.c +++ b/src/interpret.c @@ -5,7 +5,7 @@ \*/ /**/ #include "global.h" -RCSID("$Id: interpret.c,v 1.173 2000/11/20 01:20:24 mast Exp $"); +RCSID("$Id: interpret.c,v 1.174 2000/11/20 01:59:20 mast Exp $"); #include "interpret.h" #include "object.h" #include "program.h" @@ -61,7 +61,7 @@ RCSID("$Id: interpret.c,v 1.173 2000/11/20 01:20:24 mast Exp $"); /* Keep some margin on the stack space checks. They're lifted when * handle_error runs to give it some room. */ #define SVALUE_STACK_MARGIN 100 /* Tested in 7.1: 40 was enough, 30 wasn't. */ -#define C_STACK_MARGIN 2000 /* Tested in 7.1: 1500 was enough, 1400 wasn't. */ +#define C_STACK_MARGIN 8000 /* Tested in 7.1: 3000 was enough, 2600 wasn't. */ #ifdef PIKE_DEBUG -- GitLab