Next: objects misc, Previous: objects closures, Up: objects [Index]
There are two kinds of continuation objects:
Represent a Scheme continuation as defined by R6RS, a portion of
Scheme stack whose frames are freezed. Scheme continuations are
expliticly created by call/cc
, but also used to represent a
Scheme stack segment that has run out of space making the frames
overflow into another stack segment.
Represent a C language continuation, a portion of the C language stack. They are used by the FFI to save the C execution context just before calling back to Scheme from C code, Foreign functions interface.
• objects continuations intro: | Introduction to continuations. | |
• objects continuations scheme: | Scheme continuation objects. | |
• objects continuations system: | System continuation objects. |