diff options
Diffstat (limited to '')
-rw-r--r-- | lstate.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -318,7 +318,7 @@ LUA_API lua_State *lua_newthread (lua_State *L) { | |||
318 | /* create new thread */ | 318 | /* create new thread */ |
319 | L1 = &cast(LX *, luaM_newobject(L, LUA_TTHREAD, sizeof(LX)))->l; | 319 | L1 = &cast(LX *, luaM_newobject(L, LUA_TTHREAD, sizeof(LX)))->l; |
320 | L1->marked = luaC_white(g); | 320 | L1->marked = luaC_white(g); |
321 | L1->tt = LUA_TTHREAD; | 321 | L1->tt = LUA_VTHREAD; |
322 | /* link it on list 'allgc' */ | 322 | /* link it on list 'allgc' */ |
323 | L1->next = g->allgc; | 323 | L1->next = g->allgc; |
324 | g->allgc = obj2gco(L1); | 324 | g->allgc = obj2gco(L1); |
@@ -382,7 +382,7 @@ LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { | |||
382 | if (l == NULL) return NULL; | 382 | if (l == NULL) return NULL; |
383 | L = &l->l.l; | 383 | L = &l->l.l; |
384 | g = &l->g; | 384 | g = &l->g; |
385 | L->tt = LUA_TTHREAD; | 385 | L->tt = LUA_VTHREAD; |
386 | g->currentwhite = bitmask(WHITE0BIT); | 386 | g->currentwhite = bitmask(WHITE0BIT); |
387 | L->marked = luaC_white(g); | 387 | L->marked = luaC_white(g); |
388 | preinit_thread(L, g); | 388 | preinit_thread(L, g); |