diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-04-22 15:00:37 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-04-22 15:00:37 -0300 |
commit | 0ef5cf22891c9d34a88ccc5d89eb0ed82b004471 (patch) | |
tree | 1a095acefa978d5a41f32ff7d0fef58a642aa66c /table.h | |
parent | fed9408ab51a4be5ff84450ad47d1e0cdaed97bc (diff) | |
download | lua-0ef5cf22891c9d34a88ccc5d89eb0ed82b004471.tar.gz lua-0ef5cf22891c9d34a88ccc5d89eb0ed82b004471.tar.bz2 lua-0ef5cf22891c9d34a88ccc5d89eb0ed82b004471.zip |
lock mechanism seperseded by the REFERENCE mechanism.
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** Module to control static tables | 2 | ** Module to control static tables |
3 | ** TeCGraf - PUC-Rio | 3 | ** TeCGraf - PUC-Rio |
4 | ** $Id: table.h,v 2.19 1996/02/26 21:00:27 roberto Exp roberto $ | 4 | ** $Id: table.h,v 2.20 1996/03/14 15:57:19 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef table_h | 7 | #ifndef table_h |
@@ -30,6 +30,7 @@ Word luaI_findconstant (TaggedString *t); | |||
30 | Word luaI_findconstantbyname (char *name); | 30 | Word luaI_findconstantbyname (char *name); |
31 | TaggedString *luaI_createfixedstring (char *str); | 31 | TaggedString *luaI_createfixedstring (char *str); |
32 | int lua_markobject (Object *o); | 32 | int lua_markobject (Object *o); |
33 | int luaI_ismarked (Object *o); | ||
33 | Long luaI_collectgarbage (void); | 34 | Long luaI_collectgarbage (void); |
34 | void lua_pack (void); | 35 | void lua_pack (void); |
35 | 36 | ||