aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-12 14:23:12 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-08-12 14:23:12 -0300
commit8e4ac679ffce4a2d59b0a404473275411854f598 (patch)
tree8758db19adc160f2366d40f2d39287611a3d4279 /lstate.h
parent221b5be7b78dc401d4fac49df534f7ff68c04d58 (diff)
downloadlua-8e4ac679ffce4a2d59b0a404473275411854f598.tar.gz
lua-8e4ac679ffce4a2d59b0a404473275411854f598.tar.bz2
lua-8e4ac679ffce4a2d59b0a404473275411854f598.zip
use a linear count for count hook
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 c5001f7b..372f2b37 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.92 2002/08/06 18:01:50 roberto Exp roberto $ 2** $Id: lstate.h,v 1.93 2002/08/07 19:22:39 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*/
@@ -151,7 +151,7 @@ struct lua_State {
151 CallInfo *end_ci; /* points after end of ci array*/ 151 CallInfo *end_ci; /* points after end of ci array*/
152 CallInfo *base_ci; /* array of CallInfo's */ 152 CallInfo *base_ci; /* array of CallInfo's */
153 int size_ci; /* size of array `base_ci' */ 153 int size_ci; /* size of array `base_ci' */
154 int hookmask; 154 unsigned long hookmask;
155 ls_count hookcount; 155 ls_count hookcount;
156 lua_Hook hook; 156 lua_Hook hook;
157 UpVal *openupval; /* list of open upvalues in this stack */ 157 UpVal *openupval; /* list of open upvalues in this stack */