Lines Matching full:local
42 * \defgroup lc Local continuations
45 * Local continuations form the basis for implementing protothreads. A
46 * local continuation can be <i>set</i> in a specific function to
47 * capture the state of the function. After a local continuation has
49 * function at the point where the local continuation was set.
56 * Local continuations
64 * Initialize a local continuation.
66 * This operation initializes the local continuation, thereby
74 * Set a local continuation.
79 * call-stack or local (automatic) variables, but only the program
87 * Resume a local continuation.
89 * The resume operation resumes a previously set local continuation, thus
90 * restoring the state in which the function was when the local
91 * continuation was set. If the local continuation has not been
99 * Mark the end of local continuation usage.
101 * The end operation signifies that local continuations should not be
103 * most implementations of local continuation, but is required by a
113 * The local continuation type.