MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / remarkupvals

Function remarkupvals

Source/Misc/lua/src/lua.c:6517–6524  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6515
6516
6517static void remarkupvals (global_State *g) {
6518UpVal *uv;
6519for (uv = g->uvhead.u.l.next; uv != &g->uvhead; uv = uv->u.l.next) {
6520lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
6521if (isgray(obj2gco(uv)))
6522markvalue(g, uv->v);
6523}
6524}
6525
6526
6527static void atomic (lua_State *L) {

Callers 1

atomicFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected