Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Segmented stacks

Boost.Coroutine supports usage of a segemented-stack, e. g. the size of the stack grows on demand. The coroutine is created with an minimal stack size and will be increased as required.

Segmented stacks are currently only supported by gcc from version 4.7 onwards. In order to use a segemented-stack Boost.Coroutine must be build with toolset=gcc segmented-stacks=on at b2/bjam command-line. Applications must be compiled with compiler-flags -fsplit-stack -DBOOST_USE_SEGMENTED_STACKS.


PrevUpHomeNext