HomeSort by: relevance | last modified time | path
    Searched refs:yieldable (Results 1 - 3 of 3) sorted by relevancy

  /src/external/mit/lua/dist/src/
lstate.h 99 ** 16 bits counts the number of non-yieldable calls in the stack.
105 /* true if this thread does not have non-yieldable calls in the stack */
106 #define yieldable(L) (((L)->nCcalls & 0xffff0000) == 0) macro
112 /* Increment the number of non-yieldable calls */
115 /* Decrement the number of non-yieldable calls */
118 /* Non-yieldable call increment */
216 #define CIST_YPCALL (1<<4) /* doing a yieldable protected call */
329 l_uint32 nCcalls; /* number of nested (non-yieldable | C) calls */
ldo.c 627 ** plus increment number of non-yieldable calls).
722 lua_assert(ci->u.c.k != NULL && yieldable(L));
871 return yieldable(L);
882 if (l_unlikely(!yieldable(L))) {
lapi.c 1024 if (k != NULL && yieldable(L)) { /* need to prepare continuation? */
1029 else /* no continuation or no yieldable */
1072 if (k == NULL || !yieldable(L)) { /* no continuation or no yieldable? */

Completed in 79 milliseconds