diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-09-19 19:02:14 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-09-19 19:02:14 -0300 |
commit | ddfa1fbccfe4c1ec69f7396a4f5842abe70927ba (patch) | |
tree | df467dc5dc5c64a21bb976ec661796d17d37f791 /lobject.h | |
parent | b443145ff3415fcaee903a7d95fa7212df5a77db (diff) | |
download | lua-ddfa1fbccfe4c1ec69f7396a4f5842abe70927ba.tar.gz lua-ddfa1fbccfe4c1ec69f7396a4f5842abe70927ba.tar.bz2 lua-ddfa1fbccfe4c1ec69f7396a4f5842abe70927ba.zip |
GC back to controling pace counting bytes
Memory is the resource we want to save. Still to be reviewed again.
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -838,7 +838,7 @@ typedef struct Table { | |||
838 | LUAI_FUNC int luaO_utf8esc (char *buff, unsigned long x); | 838 | LUAI_FUNC int luaO_utf8esc (char *buff, unsigned long x); |
839 | LUAI_FUNC lu_byte luaO_ceillog2 (unsigned int x); | 839 | LUAI_FUNC lu_byte luaO_ceillog2 (unsigned int x); |
840 | LUAI_FUNC lu_byte luaO_codeparam (unsigned int p); | 840 | LUAI_FUNC lu_byte luaO_codeparam (unsigned int p); |
841 | LUAI_FUNC l_obj luaO_applyparam (lu_byte p, l_obj x); | 841 | LUAI_FUNC l_mem luaO_applyparam (lu_byte p, l_mem x); |
842 | 842 | ||
843 | LUAI_FUNC int luaO_rawarith (lua_State *L, int op, const TValue *p1, | 843 | LUAI_FUNC int luaO_rawarith (lua_State *L, int op, const TValue *p1, |
844 | const TValue *p2, TValue *res); | 844 | const TValue *p2, TValue *res); |