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 to view this page for the latest version.
PrevUpHomeNext

Class named_condition_any

boost::interprocess::named_condition_any

Synopsis

// In header: <boost/interprocess/sync/named_condition_any.hpp>


class named_condition_any {
public:

  // public data members
   __pad0__;
   name;
};

Description

A global condition variable that can be created by name. This condition variable is designed to work with named_mutex and can't be placed in shared memory or memory mapped files.

named_condition_any public public data members

  1.  __pad0__;

    Creates a global condition with a name. If the condition can't be created throws interprocess_exception


PrevUpHomeNext