Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlgc.c138 lua_assert(g->gcstate != GCSpause); in luaC_barrier_()
1043 case GCSpause: { in singlestep()
1097 g->gcstate = GCSpause; /* finish collection */ in singlestep()
1126 luaC_runtilstate(L, bitmask(GCSpause)); /* run complete (minor) cycle */ in generationalcollection()
1150 } while (debt > -GCSTEPSIZE && g->gcstate != GCSpause); in incstep()
1151 if (g->gcstate == GCSpause) in incstep()
1169 for (i = 0; g->tobefnz && (i < GCFINALIZENUM || g->gcstate == GCSpause); i++) in luaC_forcestep()
1205 luaC_runtilstate(L, bitmask(GCSpause)); in luaC_fullgc()
1206 luaC_runtilstate(L, ~bitmask(GCSpause)); /* start new collection */ in luaC_fullgc()
1207 luaC_runtilstate(L, bitmask(GCSpause)); /* run entire collection */ in luaC_fullgc()
H A Dlgc.h44 #define GCSpause 5 macro
H A Dlstate.c293 g->gcstate = GCSpause; in lua_newstate()
H A Dlapi.c1059 if (g->gcstate == GCSpause) /* end of cycle? */ in lua_gc()