aboutsummaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-08-07 09:18:11 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-08-07 09:18:11 -0300
commit623e388bb4c75eb07af3b7f83c736841d9fb76f0 (patch)
treef0c64d3c1b0f385b1b31536dd46ccd0c55b57a0b /lfunc.h
parent677d90165ffef728231340c6328e9661824dbc34 (diff)
downloadlua-623e388bb4c75eb07af3b7f83c736841d9fb76f0.tar.gz
lua-623e388bb4c75eb07af3b7f83c736841d9fb76f0.tar.bz2
lua-623e388bb4c75eb07af3b7f83c736841d9fb76f0.zip
double-linked list of all upvalues elliminated and changed to a
traversal of all non-marked threads
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lfunc.h b/lfunc.h
index 27d041ce..c5e8b89c 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lfunc.h,v 2.7 2012/01/20 22:05:50 roberto Exp roberto $ 2** $Id: lfunc.h,v 2.8 2012/05/08 13:53:33 roberto Exp roberto $
3** Auxiliary functions to manipulate prototypes and closures 3** Auxiliary functions to manipulate prototypes and closures
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -25,7 +25,6 @@ LUAI_FUNC UpVal *luaF_newupval (lua_State *L);
25LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level); 25LUAI_FUNC UpVal *luaF_findupval (lua_State *L, StkId level);
26LUAI_FUNC void luaF_close (lua_State *L, StkId level); 26LUAI_FUNC void luaF_close (lua_State *L, StkId level);
27LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f); 27LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
28LUAI_FUNC void luaF_freeupval (lua_State *L, UpVal *uv);
29LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number, 28LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
30 int pc); 29 int pc);
31 30