Explorar o código

tells the allocation function that the first block is a thread

Roberto Ierusalimschy %!s(int64=15) %!d(string=hai) anos
pai
achega
99a39f6f4a
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      lstate.c

+ 2 - 2
lstate.c

@@ -1,5 +1,5 @@
 /*
-** $Id: lstate.c,v 2.79 2010/04/12 16:07:06 roberto Exp roberto $
+** $Id: lstate.c,v 2.80 2010/04/14 15:14:21 roberto Exp roberto $
 ** Global State
 ** See Copyright Notice in lua.h
 */
@@ -218,7 +218,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
   int i;
   lua_State *L;
   global_State *g;
-  LG *l = cast(LG *, (*f)(ud, NULL, 0, sizeof(LG)));
+  LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, sizeof(LG)));
   if (l == NULL) return NULL;
   L = &l->l.l;
   g = &l->g;