/usr/include/boost/thread/pthread
NameSizeModeActions
condition_variable.hpp197860644editdlrm
condition_variable_fwd.hpp136840644editdlrm
mutex.hpp100670644editdlrm
once.hpp214450644editdlrm
once_atomic.hpp90020644editdlrm
pthread_helpers.hpp48480644editdlrm
pthread_mutex_scoped_lock.hpp18420644editdlrm
recursive_mutex.hpp144470644editdlrm
shared_mutex.hpp205150644editdlrm
thread_data.hpp130850644editdlrm
thread_heap_alloc.hpp105630644editdlrm
Edit: /usr/include/boost/thread/pthread/thread_heap_alloc.hpp (10563B)
// Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // (C) Copyright 2008 Anthony Williams #ifndef THREAD_HEAP_ALLOC_PTHREAD_HPP #define THREAD_HEAP_ALLOC_PTHREAD_HPP #include namespace boost { namespace detail { template inline T* heap_new() { return new T(); } #if defined(BOOST_THREAD_PROVIDES_VARIADIC_THREAD) && ! defined (BOOST_NO_CXX11_RVALUE_REFERENCES) template inline T* heap_new(Args&&... args) { return new T(static_cast(args)...); } #elif ! defined BOOST_NO_CXX11_RVALUE_REFERENCES template inline T* heap_new(A1&& a1) { return new T(static_cast(a1)); } template inline T* heap_new(A1&& a1,A2&& a2) { return new T(static_cast(a1),static_cast(a2)); } template inline T* heap_new(A1&& a1,A2&& a2,A3&& a3) { return new T(static_cast(a1),static_cast(a2), static_cast(a3)); } template inline T* heap_new(A1&& a1,A2&& a2,A3&& a3,A4&& a4) { return new T(static_cast(a1),static_cast(a2), static_cast(a3),static_cast(a4)); } #else template inline T* heap_new_impl(A1 a1) { return new T(a1); } template inline T* heap_new_impl(A1 a1,A2 a2) { return new T(a1,a2); } template inline T* heap_new_impl(A1 a1,A2 a2,A3 a3) { return new T(a1,a2,a3); } template inline T* heap_new_impl(A1 a1,A2 a2,A3 a3,A4 a4) { return new T(a1,a2,a3,a4); } template inline T* heap_new_impl(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5) { return new T(a1,a2,a3,a4,a5); } template inline T* heap_new_impl(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5,A6 a6) { return new T(a1,a2,a3,a4,a5,a6); } template inline T* heap_new_impl(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5,A6 a6,A7 a7) { return new T(a1,a2,a3,a4,a5,a6,a7); } template inline T* heap_new_impl(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5,A6 a6,A7 a7,A8 a8) { return new T(a1,a2,a3,a4,a5,a6,a7,a8); } template inline T* heap_new_impl(A1 a1,A2 a2,A3 a3,A4 a4,A5 a5,A6 a6,A7 a7,A8 a8,A9 a9) { return new T(a1,a2,a3,a4,a5,a6,a7,a8,a9); } template inline T* heap_new(A1 const& a1) { return heap_new_impl(a1); } template inline T* heap_new(A1& a1) { return heap_new_impl(a1); } template inline T* heap_new(A1 const& a1,A2 const& a2) { return heap_new_impl(a1,a2); } template inline T* heap_new(A1& a1,A2 const& a2) { return heap_new_impl(a1,a2); } template inline T* heap_new(A1 const& a1,A2& a2) { return heap_new_impl(a1,a2); } template inline T* heap_new(A1& a1,A2& a2) { return heap_new_impl(a1,a2); } template inline T* heap_new(A1 const& a1,A2 const& a2,A3 const& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1& a1,A2 const& a2,A3 const& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1 const& a1,A2& a2,A3 const& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1& a1,A2& a2,A3 const& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1 const& a1,A2 const& a2,A3& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1& a1,A2 const& a2,A3& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1 const& a1,A2& a2,A3& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1& a1,A2& a2,A3& a3) { return heap_new_impl(a1,a2,a3); } template inline T* heap_new(A1 const& a1,A2 const& a2,A3 const& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2 const& a2,A3 const& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1 const& a1,A2& a2,A3 const& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2& a2,A3 const& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1 const& a1,A2 const& a2,A3& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2 const& a2,A3& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1 const& a1,A2& a2,A3& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2& a2,A3& a3,A4 const& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1 const& a1,A2 const& a2,A3 const& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2 const& a2,A3 const& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1 const& a1,A2& a2,A3 const& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2& a2,A3 const& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1 const& a1,A2 const& a2,A3& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2 const& a2,A3& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1 const& a1,A2& a2,A3& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } template inline T* heap_new(A1& a1,A2& a2,A3& a3,A4& a4) { return heap_new_impl(a1,a2,a3,a4); } #endif template inline void heap_delete(T* data) { delete data; } template struct do_heap_delete { void operator()(T* data) const { detail::heap_delete(data); } }; } } #include #endif