summaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-09-13 13:21:52 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2013-09-13 13:21:52 -0300
commit686e57cf9c61070ff961407e3304071e171542f4 (patch)
tree902f64eb6a46bcd57d4d1140efd5bdcf7f1e501f /lstate.c
parent06156e7575dee21026595a30dcf76f400c447a33 (diff)
downloadlua-github-686e57cf9c61070ff961407e3304071e171542f4.tar.gz
GC local pause configurable
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/lstate.c b/lstate.c
index f9d857fb..0c3eb8f1 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
/*
-** $Id: lstate.c,v 2.112 2013/09/11 12:26:14 roberto Exp roberto $
+** $Id: lstate.c,v 2.113 2013/09/11 14:09:55 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
@@ -30,6 +30,10 @@
#define LUAI_GCPAUSE 200 /* 200% */
#endif
+#if !defined(LUAI_GCLOCALPAUSE)
+#define LUAI_GCLOCALPAUSE (1000 * sizeof(TString))
+#endif
+
#if !defined(LUAI_GCMUL)
#define LUAI_GCMUL 200 /* GC runs 'twice the speed' of memory allocation */
#endif
@@ -301,6 +305,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
g->totalbytes = sizeof(LG);
g->GCdebt = 0;
g->gcpause = LUAI_GCPAUSE;
+ g->gclocalpause = LUAI_GCLOCALPAUSE;
g->gcstepmul = LUAI_GCMUL;
for (i=0; i < LUA_NUMTAGS; i++) g->mt[i] = NULL;
if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) {