Explorar o código

better control for GC running or stopped

Roberto Ierusalimschy %!s(int64=14) %!d(string=hai) anos
pai
achega
f6bd8b1147
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      llimits.h

+ 2 - 2
llimits.h

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: llimits.h,v 1.85 2010/12/10 13:40:22 roberto Exp roberto $
+** $Id: llimits.h,v 1.86 2010/12/23 15:38:28 roberto Exp roberto $
 ** Limits, basic types, and some other `installation-dependent' definitions
 ** Limits, basic types, and some other `installation-dependent' definitions
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -277,7 +277,7 @@ union luai_Cast { double l_d; LUA_INT32 l_p[2]; };
 #define condchangemem(L)	condmovestack(L)
 #define condchangemem(L)	condmovestack(L)
 #else
 #else
 #define condchangemem(L)  \
 #define condchangemem(L)  \
-	((void)(gcstopped(G(L)) || (luaC_fullgc(L, 0), 1)))
+	((void)(!(G(L)->gcrunning) || (luaC_fullgc(L, 0), 1)))
 #endif
 #endif
 
 
 #endif
 #endif