[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: scm_call_continuation gone...
From: |
Viktor Pavlenko |
Subject: |
Re: scm_call_continuation gone... |
Date: |
Sun, 6 Oct 2002 09:42:48 -0400 |
>>>>> "MV" == Marius Vollmer <address@hidden> writes:
MV> Viktor Pavlenko <address@hidden> writes:
>> Dear Guile Wizards,
>>
>> I upgraded to 1.6.0, and can't find a way to call a
>> continuation from C code. scm_call_continuation() is gone
>> now...
MV> Did we ever have a scm_call_continuation? What version
MV> contained in?
1.4.1, libguile/continuations.h:
extern SCM scm_call_continuation (SCM cont, SCM val);
MV> In any case, you should be able to invoke continuations like
MV> any other procedure. For example.
MV> scm_call_1 (cont, arg);
Thanks, that makes sense.
Viktor