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

Struct header_t

boost::interprocess::segment_manager::header_t

Synopsis

// In header: <boost/interprocess/segment_manager.hpp>



struct header_t {
  // construct/copy/destruct
  header_t(Base *);
  named_index_t m_named_index;
  unique_index_t m_unique_index;
};

Description

This struct includes needed data and derives from rmutex to allow EBO when using null interprocess_mutex

header_t public construct/copy/destruct

  1. header_t(Base * restricted_segment_mngr);

PrevUpHomeNext