Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-03-31 08:04:58

0001 //////////////////////////////////////////////////////////////////////////////
0002 //
0003 // (C) Copyright Ion Gaztanaga 2008-2012. Distributed under the Boost
0004 // Software License, Version 1.0. (See accompanying file
0005 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // See http://www.boost.org/libs/interprocess for documentation.
0008 //
0009 //////////////////////////////////////////////////////////////////////////////
0010 
0011 #ifndef BOOST_INTERPROCESS_CONTAINERS_ALLOCATION_TYPE_HPP
0012 #define BOOST_INTERPROCESS_CONTAINERS_ALLOCATION_TYPE_HPP
0013 
0014 #ifndef BOOST_CONFIG_HPP
0015 #  include <boost/config.hpp>
0016 #endif
0017 0018 ">#
0019 #if defined(BOOST_HAS_PRAGMA_ONCE)
0020 #  pragma once
0021 #endif
0022 
0023 #include <boost/interprocess/detail/config_begin.hpp>
0024 #include <boost/container/detail/allocation_type.hpp>
0025 
0026 namespace boost {
0027 namespace interprocess {
0028 
0029 #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
0030 using boost::container::allocation_type;
0031 #endif   //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
0032 static const allocation_type allocate_new       = boost::container::allocate_new;
0033 static const allocation_type expand_fwd         = boost::container::expand_fwd;
0034 static const allocation_type expand_bwd         = boost::container::expand_bwd;
0035 static const allocation_type shrink_in_place    = boost::container::shrink_in_place;
0036 static const allocation_type try_shrink_in_place= boost::container::try_shrink_in_place;
0037 static const allocation_type nothrow_allocation = boost::container::nothrow_allocation;
0038 static const allocation_type zero_memory        = boost::container::zero_memory;
0039 
0040 }  //namespace interprocess {
0041 }  //namespace boost {
0042 
0043 #include <boost/interprocess/detail/config_end.hpp>
0044 
0045 #endif //   #ifndef  BOOST_INTERPROCESS_CONTAINERS_ALLOCATION_TYPE_HPP