MAKECONTEXTSection: Linux Programmer's Manual (3)Updated: 2001-11-15 |
MAKECONTEXTSection: Linux Programmer's Manual (3)Updated: 2001-11-15 |
void makecontext(ucontext_t *ucp, void *func(),
int argc, ...);
int swapcontext (ucontext_t *oucp, ucontext_t *ucp);
For the type and the first two functions, see getcontext(2).
The makecontext() function modifies the context pointed to by ucp (which was obtained from a call to getcontext()). Before calling makecontext(), one should allocate a new stack for this context, assigning to ucp->uc_stack, and define a successor context, assigning to ucp->uc_link. When this context is later activated (using setcontext() or swapcontext()) then first the function func is called, with the arguments specified following argc (where argc must contain the number of these arguments), and when this function returns, the successor context is activated. When the successor context pointer is NULL, the thread exits.
The swapcontext() function saves the current context in the structure pointed to by oucp, and then activates the context pointed to by ucp.