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

Function unlinkupval

freebsd/contrib/openzfs/module/lua/lfunc.c:74–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72
73
74static void unlinkupval (UpVal *uv) {
75 lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
76 uv->u.l.next->u.l.prev = uv->u.l.prev; /* remove from `uvhead' list */
77 uv->u.l.prev->u.l.next = uv->u.l.next;
78}
79
80
81void luaF_freeupval (lua_State *L, UpVal *uv) {

Callers 2

luaF_freeupvalFunction · 0.70
luaF_closeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected