diff options
author | jbj <devnull@localhost> | 2004-03-23 05:09:13 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2004-03-23 05:09:13 +0000 |
commit | 7b5c3b42c9b847badc5c6f66f054ee536ce82edd (patch) | |
tree | e43fbc2496a3485768e5e45fe15f068a456e9a81 /lua/lgc.h | |
parent | 9ecefd3901e8d3dc5652247bb4ab02f73a949fb7 (diff) | |
download | librpm-tizen-7b5c3b42c9b847badc5c6f66f054ee536ce82edd.tar.gz librpm-tizen-7b5c3b42c9b847badc5c6f66f054ee536ce82edd.tar.bz2 librpm-tizen-7b5c3b42c9b847badc5c6f66f054ee536ce82edd.zip |
Splint annotations.
CVS patchset: 7182
CVS date: 2004/03/23 05:09:13
Diffstat (limited to 'lua/lgc.h')
-rw-r--r-- | lua/lgc.h | 17 |
1 files changed, 11 insertions, 6 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lgc.h,v 1.2 2004/03/19 21:14:32 niemeyer Exp $ +** $Id: lgc.h,v 1.3 2004/03/23 05:09:14 jbj Exp $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -15,11 +15,16 @@ if (G(L)->nblocks >= G(L)->GCthreshold) luaC_collectgarbage(L); } -size_t luaC_separateudata (lua_State *L); -void luaC_callGCTM (lua_State *L); -void luaC_sweep (lua_State *L, int all); -void luaC_collectgarbage (lua_State *L); -void luaC_link (lua_State *L, GCObject *o, lu_byte tt); +size_t luaC_separateudata (lua_State *L) + /*@modifies L @*/; +void luaC_callGCTM (lua_State *L) + /*@modifies L @*/; +void luaC_sweep (lua_State *L, int all) + /*@modifies L @*/; +void luaC_collectgarbage (lua_State *L) + /*@modifies L @*/; +void luaC_link (lua_State *L, GCObject *o, lu_byte tt) + /*@modifies L, o @*/; #endif |