aboutsummaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-25 16:24:10 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-04-25 16:24:10 -0300
commit8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc (patch)
tree4ad0b914b84005b706fb6c9af302132d789b133a /lgc.h
parent8c3c3e769195facf6b8c061f4fab1d86e6606be8 (diff)
downloadlua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.gz
lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.tar.bz2
lua-8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc.zip
added LUAI_FUNC to functions not in the API
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/lgc.h b/lgc.h
index be7aa039..6c628a23 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 2.11 2005/02/10 13:25:02 roberto Exp roberto $ 2** $Id: lgc.h,v 2.12 2005/02/23 17:30:22 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -95,15 +95,15 @@
95 { if (iswhite(obj2gco(o)) && isblack(obj2gco(p))) \ 95 { if (iswhite(obj2gco(o)) && isblack(obj2gco(p))) \
96 luaC_barrierback(L,obj2gco(p)); } 96 luaC_barrierback(L,obj2gco(p)); }
97 97
98size_t luaC_separateudata (lua_State *L, int all); 98LUAI_FUNC size_t luaC_separateudata (lua_State *L, int all);
99void luaC_callGCTM (lua_State *L); 99LUAI_FUNC void luaC_callGCTM (lua_State *L);
100void luaC_freeall (lua_State *L); 100LUAI_FUNC void luaC_freeall (lua_State *L);
101void luaC_step (lua_State *L); 101LUAI_FUNC void luaC_step (lua_State *L);
102void luaC_fullgc (lua_State *L); 102LUAI_FUNC void luaC_fullgc (lua_State *L);
103void luaC_link (lua_State *L, GCObject *o, lu_byte tt); 103LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt);
104void luaC_linkupval (lua_State *L, UpVal *uv); 104LUAI_FUNC void luaC_linkupval (lua_State *L, UpVal *uv);
105void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v); 105LUAI_FUNC void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v);
106void luaC_barrierback (lua_State *L, GCObject *o); 106LUAI_FUNC void luaC_barrierback (lua_State *L, GCObject *o);
107 107
108 108
109#endif 109#endif