diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-10 10:13:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-12-10 10:13:36 -0200 |
commit | 47fc57a2529c83376883f36954082cfe80ae588f (patch) | |
tree | c2e57e2f9f7d78279144bfd9cbd04a3b1b131f12 /ldebug.h | |
parent | 4d5fe1f54bc00850f77a7c42f9e95d0ff3f1ab5b (diff) | |
download | lua-47fc57a2529c83376883f36954082cfe80ae588f.tar.gz lua-47fc57a2529c83376883f36954082cfe80ae588f.tar.bz2 lua-47fc57a2529c83376883f36954082cfe80ae588f.zip |
`TObject' renamed to `TValue' + other name changes and better assertions
for incremental garbage collection
Diffstat (limited to 'ldebug.h')
-rw-r--r-- | ldebug.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.h,v 1.32 2002/11/18 11:01:55 roberto Exp $ | 2 | ** $Id: ldebug.h,v 1.33 2003/07/16 20:49:02 roberto Exp roberto $ |
3 | ** Auxiliary functions from Debug Interface module | 3 | ** Auxiliary functions from Debug Interface module |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -18,10 +18,10 @@ | |||
18 | #define resethookcount(L) (L->hookcount = L->basehookcount) | 18 | #define resethookcount(L) (L->hookcount = L->basehookcount) |
19 | 19 | ||
20 | 20 | ||
21 | void luaG_typeerror (lua_State *L, const TObject *o, const char *opname); | 21 | void luaG_typeerror (lua_State *L, const TValue *o, const char *opname); |
22 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); | 22 | void luaG_concaterror (lua_State *L, StkId p1, StkId p2); |
23 | void luaG_aritherror (lua_State *L, const TObject *p1, const TObject *p2); | 23 | void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2); |
24 | int luaG_ordererror (lua_State *L, const TObject *p1, const TObject *p2); | 24 | int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2); |
25 | void luaG_runerror (lua_State *L, const char *fmt, ...); | 25 | void luaG_runerror (lua_State *L, const char *fmt, ...); |
26 | void luaG_errormsg (lua_State *L); | 26 | void luaG_errormsg (lua_State *L); |
27 | int luaG_checkcode (const Proto *pt); | 27 | int luaG_checkcode (const Proto *pt); |