MCPcopy Create free account
hub / github.com/F-Stack/f-stack / remarkupvals

Function remarkupvals

freebsd/contrib/openzfs/module/lua/lgc.c:323–329  ·  view source on GitHub ↗

** mark all values stored in marked open upvalues. (See comment in ** 'lstate.h'.) */

Source from the content-addressed store, hash-verified

321** 'lstate.h'.)
322*/
323static void remarkupvals (global_State *g) {
324 UpVal *uv;
325 for (uv = g->uvhead.u.l.next; uv != &g->uvhead; uv = uv->u.l.next) {
326 if (isgray(obj2gco(uv)))
327 markvalue(g, uv->v);
328 }
329}
330
331
332/*

Callers 1

atomicFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected