MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / lua_newuserdata

Function lua_newuserdata

ThirdParty/lua/lua/lapi.c:1155–1164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1153
1154
1155LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
1156 Udata *u;
1157 lua_lock(L);
1158 luaC_checkGC(L);
1159 u = luaS_newudata(L, size);
1160 setuvalue(L, L->top, u);
1161 api_incr_top(L);
1162 lua_unlock(L);
1163 return getudatamem(u);
1164}
1165
1166
1167

Callers 3

NewUserDataFunction · 0.85
luaL_prepbuffsizeFunction · 0.85
newprefileFunction · 0.85

Calls 1

luaS_newudataFunction · 0.85

Tested by

no test coverage detected