policies.hpp 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // boost lockfree
  2. //
  3. // Copyright (C) 2011 Tim Blechmann
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_LOCKFREE_POLICIES_HPP_INCLUDED
  9. #define BOOST_LOCKFREE_POLICIES_HPP_INCLUDED
  10. #include <boost/parameter.hpp>
  11. #include <boost/mpl/bool.hpp>
  12. #include <boost/mpl/size_t.hpp>
  13. #include <boost/mpl/void.hpp>
  14. namespace boost {
  15. namespace lockfree {
  16. #ifndef BOOST_DOXYGEN_INVOKED
  17. namespace tag { struct allocator ; }
  18. namespace tag { struct fixed_sized; }
  19. namespace tag { struct capacity; }
  20. #endif
  21. /** Configures a data structure as \b fixed-sized.
  22. *
  23. * The internal nodes are stored inside an array and they are addressed by array indexing. This limits the possible size of the
  24. * queue to the number of elements that can be addressed by the index type (usually 2**16-2), but on platforms that lack
  25. * double-width compare-and-exchange instructions, this is the best way to achieve lock-freedom.
  26. * This implies that a data structure is bounded.
  27. * */
  28. template <bool IsFixedSized>
  29. struct fixed_sized:
  30. boost::parameter::template_keyword<tag::fixed_sized, boost::mpl::bool_<IsFixedSized> >
  31. {};
  32. /** Sets the \b capacity of a data structure at compile-time.
  33. *
  34. * This implies that a data structure is bounded and fixed-sized.
  35. * */
  36. template <size_t Size>
  37. struct capacity:
  38. boost::parameter::template_keyword<tag::capacity, boost::mpl::size_t<Size> >
  39. {};
  40. /** Defines the \b allocator type of a data structure.
  41. * */
  42. template <class Alloc>
  43. struct allocator:
  44. boost::parameter::template_keyword<tag::allocator, Alloc>
  45. {};
  46. }
  47. }
  48. #endif /* BOOST_LOCKFREE_POLICIES_HPP_INCLUDED */