MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / luaF_unlinkupval

Function luaF_unlinkupval

lib/lua/src/lfunc.c:182–187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180
181
182void luaF_unlinkupval (UpVal *uv) {
183 lua_assert(upisopen(uv));
184 *uv->u.open.previous = uv->u.open.next;
185 if (uv->u.open.next)
186 uv->u.open.next->u.open.previous = uv->u.open.previous;
187}
188
189
190/*

Callers 2

luaF_closeupvalFunction · 0.85
freeupvalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected