File size: 345 Bytes
3dcad1f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
// simple interface for calling
// introspector from c
// we start with function apply
//scm_call_n (SCM proc, SCM *argv, size_t nargs)
void
spct_invoke_apply_hook (scm_thread * thread);
void
spct_invoke_return_hook (scm_thread * thread);
void
spct_invoke_next_hook (scm_thread * thread);
void
spct_invoke_abort_hook (scm_thread * thread);
|