Cyclone Scheme  0.20

◆ continue_or_gc1

#define continue_or_gc1 (   td,
  clo,
  a1 
)
Value:
{ \
char *top = alloca(sizeof(char)); \
if (stack_overflow(top, (((gc_thread_data *)data)->stack_limit))) { \
object buf[1]; buf[0] = a1;\
GC(td, clo, buf, 1); \
return; \
} else {\
continue;\
} \
}
Definition: types.h:321
#define stack_overflow(x, y)
Definition: types.h:516