Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dldo.c489 static l_noret resume_error (lua_State *L, const char *msg, StkId firstArg) { in resume_error() argument
490 L->top = firstArg; /* remove args from the stack */ in resume_error()
502 StkId firstArg = cast(StkId, ud); in resume_cb() local
505 resume_error(L, "C stack overflow", firstArg); in resume_cb()
508 resume_error(L, "cannot resume non-suspended coroutine", firstArg); in resume_cb()
510 if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */ in resume_cb()
514 resume_error(L, "cannot resume dead coroutine", firstArg); in resume_cb()
529 firstArg = L->top - n; /* yield results come from continuation */ in resume_cb()
531 luaD_poscall(L, firstArg); /* finish 'luaD_precall' */ in resume_cb()