Home
last modified time | relevance | path

Searched refs:allgc (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlfunc.c102 gch(o)->next = g->allgc; /* link upvalue into 'allgc' list */ in luaF_close()
103 g->allgc = o; in luaF_close()
H A Dlgc.c218 list = &g->allgc; /* standard list for collectable objects */ in luaC_newobj()
793 gch(o)->next = g->allgc; /* return it to 'allgc' list */ in udata2finalize()
794 g->allgc = o; in udata2finalize()
887 for (p = &g->allgc; *p != o; p = &gch(*p)->next) { /* empty */ } in luaC_checkfinalizer()
944 g->sweepgc = sweeptolive(L, &g->allgc, &n); in entersweep()
992 sweepwholelist(L, &g->allgc); in luaC_freeallobjects()
H A Dlstate.h127 GCObject *allgc; /* list of all collectable objects */ member
H A Dlstate.c294 g->allgc = NULL; in lua_newstate()