![]() |
Home | Libraries | People | FAQ | More |
Boost.Coroutine provides the class boost::coroutines::stack_context which will contain the stack pointer and the size of the stack. In case of a segemented-stack boost::coroutines::stack_context contains some extra controll structures.
struct stack_context { void * sp; std::size_t size; // might contain addition controll structures // for instance for segmented stacks }
void * sp
Pointer to the beginning of the stack.
std::size_t
size
Actual size of the stack.