Searched refs:allgc (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/external/mit/lua/dist/src/
H A Dlgc.c248 lua_assert(g->allgc == o); /* object must be 1st in 'allgc' list! */
251 g->allgc = o->next; /* remove object from 'allgc' list */
259 ** and link it to 'allgc' list.
267 o->next = g->allgc;
268 g->allgc = o;
885 ** link it back into the 'allgc' list.
891 o->next = g->allgc; /* return it to 'allgc' lis
[all...]
H A Dlstate.h30 ** 'allgc': all objects not marked for finalization;
40 ** 'allgc' -> 'survival': new objects;
59 ** 'markold'. (Potentially OLD1 objects can be anywhere between 'allgc'
278 GCObject *allgc; /* list of all collectable objects */ member in struct:global_State
H A Dlstate.c376 g->allgc = obj2gco(L); /* by now, only object is the main thread */

Completed in 278 milliseconds