aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-15 17:39:42 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-15 17:39:42 -0300
commit2419f2bf02a9165471248f09bae57e3fa134e545 (patch)
tree9f7e387740892ee591218b8ea745d35a45aa6e41 /lstate.h
parent0e54d2be365ec77cb455e0d0f3c5c6f9efa6e04c (diff)
downloadlua-2419f2bf02a9165471248f09bae57e3fa134e545.tar.gz
lua-2419f2bf02a9165471248f09bae57e3fa134e545.tar.bz2
lua-2419f2bf02a9165471248f09bae57e3fa134e545.zip
cleaner API for coroutines
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 d8bda576..836e3df5 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 2.6 2004/08/24 20:12:06 roberto Exp roberto $ 2** $Id: lstate.h,v 2.7 2004/08/30 13:44: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*/
@@ -111,7 +111,7 @@ struct lua_State {
111 unsigned short nCcalls; /* number of nested C calls */ 111 unsigned short nCcalls; /* number of nested C calls */
112 lu_byte hookmask; 112 lu_byte hookmask;
113 lu_byte allowhook; 113 lu_byte allowhook;
114 lu_byte isSuspended; 114 lu_byte status;
115 int basehookcount; 115 int basehookcount;
116 int hookcount; 116 int hookcount;
117 lua_Hook hook; 117 lua_Hook hook;