Searched refs:rootgc (Results 1 – 3 of 3) sorted by relevance
422 if (curr == g->rootgc) /* is the first element of the list? */ in sweeplist()423 g->rootgc = curr->gch.next; /* adjust first */ in sweeplist()487 sweepwholelist(L, &g->rootgc); in luaC_freeall()550 g->sweepgc = &g->rootgc; in atomic()640 g->sweepgc = &g->rootgc; in luaC_fullgc()687 o->gch.next = g->rootgc; in luaC_link()688 g->rootgc = o; in luaC_link()697 o->gch.next = g->rootgc; /* link upvalue into `rootgc' list */ in luaC_linkupval()698 g->rootgc = o; in luaC_linkupval()
109 lua_assert(g->rootgc == obj2gco(L)); in close_state()170 g->rootgc = obj2gco(L); in lua_newstate()172 g->sweepgc = &g->rootgc; in lua_newstate()
75 GCObject *rootgc; /* list of all collectable objects */ member