diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-11 18:26:52 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-01-11 18:26:52 -0200 |
commit | d56d4cf776b2a874e35d7a92c506840f4a2051b6 (patch) | |
tree | 873e9d729b589749aa207916dd1c42843154ce63 /ldo.h | |
parent | b7ae43d457ca7b5a46ca768f482b334d70897a14 (diff) | |
download | lua-github-d56d4cf776b2a874e35d7a92c506840f4a2051b6.tar.gz |
distinct functions to create/destroy states and threads
Diffstat (limited to 'ldo.h')
-rw-r--r-- | ldo.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: ldo.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $ +** $Id: ldo.h,v 1.38 2002/01/11 20:24:39 roberto Exp $ ** Stack and Call structure of Lua ** See Copyright Notice in lua.h */ @@ -22,7 +22,6 @@ #define luaD_checkstack(L,n) if (L->stack_last-(n)<=L->top) luaD_stackerror(L) -void luaD_init (lua_State *L, int stacksize); void luaD_lineHook (lua_State *L, int line, lua_Hook linehook); void luaD_callHook (lua_State *L, lua_Hook callhook, const char *event); StkId luaD_precall (lua_State *L, StkId func); |