RELEASE LuaJIT-2.0.0-beta1
This commit is contained in:
33
src/lj_udata.c
Normal file
33
src/lj_udata.c
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
** Userdata handling.
|
||||
** Copyright (C) 2005-2009 Mike Pall. See Copyright Notice in luajit.h
|
||||
*/
|
||||
|
||||
#define lj_udata_c
|
||||
#define LUA_CORE
|
||||
|
||||
#include "lj_obj.h"
|
||||
#include "lj_gc.h"
|
||||
#include "lj_udata.h"
|
||||
|
||||
GCudata *lj_udata_new(lua_State *L, MSize sz, GCtab *env)
|
||||
{
|
||||
GCudata *ud = lj_mem_newt(L, sizeof(GCudata) + sz, GCudata);
|
||||
global_State *g = G(L);
|
||||
newwhite(g, ud); /* Not finalized. */
|
||||
ud->gct = ~LJ_TUDATA;
|
||||
ud->len = sz;
|
||||
/* NOBARRIER: The GCudata is new (marked white). */
|
||||
setgcrefnull(ud->metatable);
|
||||
setgcref(ud->env, obj2gco(env));
|
||||
/* Chain to userdata list (after main thread). */
|
||||
setgcrefr(ud->nextgc, mainthread(g)->nextgc);
|
||||
setgcref(mainthread(g)->nextgc, obj2gco(ud));
|
||||
return ud;
|
||||
}
|
||||
|
||||
void LJ_FASTCALL lj_udata_free(global_State *g, GCudata *ud)
|
||||
{
|
||||
lj_mem_free(g, ud, sizeudata(ud));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user