Cyclone Scheme  0.20

◆ return_direct1

#define return_direct1 (   td,
  _fn,
  a1 
)
Value:
{ \
char top; \
if (stack_overflow(&top, (((gc_thread_data *)data)->stack_limit))) { \
object buf[1]; buf[0] = a1; \
mclosure0(c1, (function_type) _fn); \
GC(td, &c1, buf, 1); \
return; \
} else { \
(_fn)(td, 1, (closure)_fn,a1); \
}}
A closed-over function with no variables.
Definition: types.h:1384
Definition: types.h:321
void(* function_type)()
Definition: types.h:665
#define stack_overflow(x, y)
Definition: types.h:516