Hello list, I wonder if the above function set can be used to implement something like what is used to work on other types of machines with setjmp()/longjmp(). I would like to continue a program at a certain point of execution with a saved environment. I achieved this by now by the following algorithm and want to ask if there is any better way. static __cont_done = 0; make_continuation { __cont_done = 0 getcontext(ctx) if (__cont_done) goto __continuation save_both_stacks() // register and normal stack in heap return __continuation: return } run_continuation { restore_both_stacks() // register and normal stack from heap __cont_done = 1 setcontext(ctx) } I do not like the static __cont_done in the piece of code. But I do not know how to determine if the instruction behind the getcontext() call is due to a normal call to make_continuation() or due to the setcontext() of run_continuation(). The setjmp() does return something appropiate but I do not know how to do it with setcontext()/getcontext(). Thanks in advance, stefan@lkcc.orgReceived on Tue Sep 25 12:42:44 2001
This archive was generated by hypermail 2.1.8 : 2005-08-02 09:20:05 EST