commit 30eebb2d1cc2cdd14426b9e80a9e1c576b955f6b
parent 0fd64669579f33b03dcda6fac4be908b4cfd7e15
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Thu, 29 Dec 2005 10:29:54 -0200
detail (stop collector while openning libraries)
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lua.c b/lua.c
@@ -1,5 +1,5 @@
/*
-** $Id: lua.c,v 1.154 2005/10/24 17:38:47 roberto Exp roberto $
+** $Id: lua.c,v 1.155 2005/11/28 14:44:48 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@@ -329,7 +329,9 @@ static int pmain (lua_State *L) {
int has_i = 0, has_v = 0, has_e = 0;
globalL = L;
if (argv[0] && argv[0][0]) progname = argv[0];
+ lua_gc(L, LUA_GCSTOP, 0); /* stop collector during initialization */
luaL_openlibs(L); /* open libraries */
+ lua_gc(L, LUA_GCRESTART, 0);
s->status = handle_luainit(L);
if (s->status != 0) return 0;
script = collectargs(argv, &has_i, &has_v, &has_e);