aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-26 17:46:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-26 17:46:10 -0300
commit81215cd59f58923ae9807d34f1dd46a51f400e4b (patch)
tree9317d562ae3ea5d54cd5487b220f6e0a20c259a3 /lstate.h
parent0b9b53e21c30fff06ae39abc00a3c43ab5a18596 (diff)
downloadlua-81215cd59f58923ae9807d34f1dd46a51f400e4b.tar.gz
lua-81215cd59f58923ae9807d34f1dd46a51f400e4b.tar.bz2
lua-81215cd59f58923ae9807d34f1dd46a51f400e4b.zip
simpler way to control stack overflow
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index ee91e853..a7ec7e2c 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.79 2002/03/11 12:45:00 roberto Exp roberto $ 2** $Id: lstate.h,v 1.80 2002/03/25 17:47:14 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -69,7 +69,7 @@ struct lua_longjmp; /* defined in ldo.c */
69#define EXTRA_STACK 4 69#define EXTRA_STACK 4
70 70
71 71
72#define BASIC_CI_SIZE 6 72#define BASIC_CI_SIZE 8
73 73
74#define BASIC_STACK_SIZE (2*LUA_MINSTACK) 74#define BASIC_STACK_SIZE (2*LUA_MINSTACK)
75 75