diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-11-29 10:37:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2022-11-29 10:37:08 -0300 |
commit | d324a0ccf9e2511baf182dd981a8ee9835cee925 (patch) | |
tree | 7cb36618c0cbafb4a0216a117fd25a78250991a5 /lstate.c | |
parent | 152b51955aabb9dfb32302569fac810e999eda03 (diff) | |
download | lua-d324a0ccf9e2511baf182dd981a8ee9835cee925.tar.gz lua-d324a0ccf9e2511baf182dd981a8ee9835cee925.tar.bz2 lua-d324a0ccf9e2511baf182dd981a8ee9835cee925.zip |
Simpler control for major collections
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -391,7 +391,6 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { | |||
391 | g->totalobjs = 1; | 391 | g->totalobjs = 1; |
392 | g->marked = 0; | 392 | g->marked = 0; |
393 | g->GCdebt = 0; | 393 | g->GCdebt = 0; |
394 | g->lastatomic = 0; | ||
395 | setivalue(&g->nilvalue, 0); /* to signal that state is not yet built */ | 394 | setivalue(&g->nilvalue, 0); /* to signal that state is not yet built */ |
396 | setgcparam(g->gcpause, LUAI_GCPAUSE); | 395 | setgcparam(g->gcpause, LUAI_GCPAUSE); |
397 | setgcparam(g->gcstepmul, LUAI_GCMUL); | 396 | setgcparam(g->gcstepmul, LUAI_GCMUL); |