![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/boost/lockfree/detail/ |
Upload File : |
// boost lockfree // // Copyright (C) 2011, 2016 Tim Blechmann // // 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) #ifndef BOOST_LOCKFREE_DETAIL_PARAMETER_HPP #define BOOST_LOCKFREE_DETAIL_PARAMETER_HPP #include <boost/lockfree/policies.hpp> #include <boost/parameter/parameters.hpp> #include <boost/parameter/binding.hpp> #include <boost/mpl/void.hpp> #include <boost/lockfree/detail/allocator_rebind_helper.hpp> namespace boost { namespace lockfree { namespace detail { namespace mpl = boost::mpl; template <typename bound_args, typename tag_type> struct has_arg { typedef typename parameter::binding<bound_args, tag_type, mpl::void_>::type type; static const bool value = mpl::is_not_void_<type>::type::value; }; template <typename bound_args> struct extract_capacity { static const bool has_capacity = has_arg<bound_args, tag::capacity>::value; typedef typename mpl::if_c<has_capacity, typename has_arg<bound_args, tag::capacity>::type, mpl::size_t< 0 > >::type capacity_t; static const std::size_t capacity = capacity_t::value; }; template <typename bound_args, typename T> struct extract_allocator { static const bool has_allocator = has_arg<bound_args, tag::allocator>::value; typedef typename mpl::if_c<has_allocator, typename has_arg<bound_args, tag::allocator>::type, std::allocator<T> >::type allocator_arg; typedef typename detail::allocator_rebind_helper<allocator_arg, T>::type type; }; template <typename bound_args, bool default_ = false> struct extract_fixed_sized { static const bool has_fixed_sized = has_arg<bound_args, tag::fixed_sized>::value; typedef typename mpl::if_c<has_fixed_sized, typename has_arg<bound_args, tag::fixed_sized>::type, mpl::bool_<default_> >::type type; static const bool value = type::value; }; } /* namespace detail */ } /* namespace lockfree */ } /* namespace boost */ #endif /* BOOST_LOCKFREE_DETAIL_PARAMETER_HPP */