Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:25

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 #if defined(BOOST_HAS_PRAGMA_ONCE)
0019 #  pragma once
0020 #endif
0021 
0022 #include <boost/interprocess/detail/config_begin.hpp>
0023 #include <boost/container/detail/allocation_type.hpp>
0024 
0025 namespace boost {
0026 namespace interprocess {
0027 
0028 #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
0029 using boost::container::allocation_type;
0030 #endif   //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
0031 static const allocation_type allocate_new       = boost::container::allocate_new;
0032 static const allocation_type expand_fwd         = boost::container::expand_fwd;
0033 static const allocation_type expand_bwd         = boost::container::expand_bwd;
0034 static const allocation_type shrink_in_place    = boost::container::shrink_in_place;
0035 static const allocation_type try_shrink_in_place= boost::container::try_shrink_in_place;
0036 static const allocation_type nothrow_allocation = boost::container::nothrow_allocation;
0037 static const allocation_type zero_memory        = boost::container::zero_memory;
0038 
0039 }  //namespace interprocess {
0040 }  //namespace boost {
0041 
0042 #include <boost/interprocess/detail/config_end.hpp>
0043 
0044 #endif //   #ifndef  BOOST_INTERPROCESS_CONTAINERS_ALLOCATION_TYPE_HPP