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

Struct template freelist
PrevUpHomeNext

Struct template freelist

boost::lockfree::freelist

Synopsis

// In header: <boost/lockfree/policies.hpp>

template<bool UseFreelist> 
struct freelist {
};

Description

Configures the mpmc_queue to use a freelist.

The mpmc_queue can be configured to use a freelist for memory management.


PrevUpHomeNext