MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / remarkupvals

Function remarkupvals

third-party/lua-5.2.4/src/lgc.c:324–330  ·  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

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

Callers 1

atomicFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected