Home
last modified time | relevance | path

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

/dports/lang/parrot/parrot-8.1.0/src/call/
H A Dops.c179 if (interp->runloop_jmp_free_list) { in Parrot_runloop_new_jump_point()
180 jump_point = interp->runloop_jmp_free_list; in Parrot_runloop_new_jump_point()
181 interp->runloop_jmp_free_list = jump_point->prev; in Parrot_runloop_new_jump_point()
211 jump_point->prev = interp->runloop_jmp_free_list; in Parrot_runloop_free_jump_point()
212 interp->runloop_jmp_free_list = jump_point; in Parrot_runloop_free_jump_point()
271 really_destroy_runloop_jump_points(interp, interp->runloop_jmp_free_list); in destroy_runloop_jump_points()
/dports/lang/parrot/parrot-8.1.0/include/parrot/
H A Dinterpreter.h275 struct parrot_runloop_t *runloop_jmp_free_list; /* and free list */ member