diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-25 16:24:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-04-25 16:24:10 -0300 |
commit | 8718fda9b24fa148ffe1a06fb36a7aa2ed628bdc (patch) | |
tree | 4ad0b914b84005b706fb6c9af302132d789b133a /lgc.h | |
parent | 8c3c3e769195facf6b8c061f4fab1d86e6606be8 (diff) | |
download | lua-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.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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 | ||
98 | size_t luaC_separateudata (lua_State *L, int all); | 98 | LUAI_FUNC size_t luaC_separateudata (lua_State *L, int all); |
99 | void luaC_callGCTM (lua_State *L); | 99 | LUAI_FUNC void luaC_callGCTM (lua_State *L); |
100 | void luaC_freeall (lua_State *L); | 100 | LUAI_FUNC void luaC_freeall (lua_State *L); |
101 | void luaC_step (lua_State *L); | 101 | LUAI_FUNC void luaC_step (lua_State *L); |
102 | void luaC_fullgc (lua_State *L); | 102 | LUAI_FUNC void luaC_fullgc (lua_State *L); |
103 | void luaC_link (lua_State *L, GCObject *o, lu_byte tt); | 103 | LUAI_FUNC void luaC_link (lua_State *L, GCObject *o, lu_byte tt); |
104 | void luaC_linkupval (lua_State *L, UpVal *uv); | 104 | LUAI_FUNC void luaC_linkupval (lua_State *L, UpVal *uv); |
105 | void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v); | 105 | LUAI_FUNC void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v); |
106 | void luaC_barrierback (lua_State *L, GCObject *o); | 106 | LUAI_FUNC void luaC_barrierback (lua_State *L, GCObject *o); |
107 | 107 | ||
108 | 108 | ||
109 | #endif | 109 | #endif |