aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-22 15:16:52 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-22 15:16:52 -0200
commit2d2d45976ce41de04e9007c8a78a8ba244d1fdc5 (patch)
tree0573761b205be9aa1471364159e559a2d5e80f9e /lstate.h
parent0050d983fc2f3cc56442cadd73a93823643ac53d (diff)
downloadlua-2d2d45976ce41de04e9007c8a78a8ba244d1fdc5.tar.gz
lua-2d2d45976ce41de04e9007c8a78a8ba244d1fdc5.tar.bz2
lua-2d2d45976ce41de04e9007c8a78a8ba244d1fdc5.zip
separated control over C recursion level
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 507de477..770c16ca 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.104 2002/11/21 15:16:04 roberto Exp roberto $ 2** $Id: lstate.h,v 1.105 2002/11/21 15:46:44 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*/
@@ -138,7 +138,8 @@ struct lua_State {
138 int stacksize; 138 int stacksize;
139 CallInfo *end_ci; /* points after end of ci array*/ 139 CallInfo *end_ci; /* points after end of ci array*/
140 CallInfo *base_ci; /* array of CallInfo's */ 140 CallInfo *base_ci; /* array of CallInfo's */
141 int size_ci; /* size of array `base_ci' */ 141 unsigned short size_ci; /* size of array `base_ci' */
142 unsigned short nCcalls; /* number of nested C calls */
142 lu_byte hookmask; 143 lu_byte hookmask;
143 lu_byte allowhook; 144 lu_byte allowhook;
144 lu_byte hookinit; 145 lu_byte hookinit;