summaryrefslogtreecommitdiff
path: root/libguile/continuations.h
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/continuations.h')
-rw-r--r--libguile/continuations.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/libguile/continuations.h b/libguile/continuations.h
index a9d2feee0..e0a455632 100644
--- a/libguile/continuations.h
+++ b/libguile/continuations.h
@@ -44,7 +44,6 @@
typedef struct
{
- SCM throw_value;
scm_i_jmp_buf jmpbuf;
SCM dynenv;
#ifdef __ia64__
@@ -73,9 +72,14 @@ typedef struct
SCM_INTERNAL SCM scm_i_make_continuation (int *first, SCM vm, SCM vm_cont);
+SCM_INTERNAL void scm_i_check_continuation (SCM cont);
+SCM_INTERNAL void scm_i_reinstate_continuation (SCM cont);
+
SCM_INTERNAL SCM scm_i_call_with_current_continuation (SCM proc);
+
SCM_INTERNAL SCM scm_i_continuation_to_frame (SCM cont);
-SCM_INTERNAL void scm_i_continuation_call (SCM cont, size_t n, SCM *argv);
+SCM_INTERNAL SCM scm_i_contregs_vm (SCM contregs);
+SCM_INTERNAL SCM scm_i_contregs_vm_cont (SCM contregs);
SCM_API void *scm_c_with_continuation_barrier (void *(*func)(void*), void *);
SCM_API SCM scm_with_continuation_barrier (SCM proc);