Home
last modified time | relevance | path

Searched refs:CIST_C (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/lua/src/
H A Dlstate.h211 #define CIST_C (1<<1) /* call is running a C function */ macro
241 #define isLua(ci) (!((ci)->callstatus & CIST_C))
244 #define isLuacode(ci) (!((ci)->callstatus & (CIST_C | CIST_HOOKED)))
H A Dlstate.c192 ci->callstatus = CIST_C; in stack_init()
327 ci->callstatus = CIST_C; in luaE_resetthread()
H A Dldo.c521 L->ci = ci = prepCallInfo(L, func, nresults, CIST_C, in precallC()