Home
last modified time | relevance | path

Searched refs:mainthread (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlstate.c282 g->mainthread = L; in lua_newstate()
318 L = G(L)->mainthread; /* only the main thread can be closed */ in lua_close()
Dldo.c110 if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */ in luaD_throw()
111 setobjs2s(L, G(L)->mainthread->top++, L->top - 1); /* copy error obj. */ in luaD_throw()
112 luaD_throw(G(L)->mainthread, errcode); /* re-throw in main thread */ in luaD_throw()
573 if (L != G(L)->mainthread) in lua_yieldk()
Dlstate.h143 struct lua_State *mainthread; member
Dlgc.c340 markobject(g, g->mainthread); in restartcollection()
1003 lua_assert(!iswhite(obj2gco(g->mainthread))); in atomic()
1094 GCObject *mt = obj2gco(g->mainthread); in singlestep()
Dlapi.c598 return (G(L)->mainthread == L); in lua_pushthread()