caps_gcc_ppc.hpp 1022 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Distributed under the Boost Software License, Version 1.0.
  3. * (See accompanying file LICENSE_1_0.txt or copy at
  4. * http://www.boost.org/LICENSE_1_0.txt)
  5. *
  6. * Copyright (c) 2009 Helge Bahmann
  7. * Copyright (c) 2013 Tim Blechmann
  8. * Copyright (c) 2014 Andrey Semashev
  9. */
  10. /*!
  11. * \file atomic/detail/caps_gcc_ppc.hpp
  12. *
  13. * This header defines feature capabilities macros
  14. */
  15. #ifndef BOOST_ATOMIC_DETAIL_CAPS_GCC_PPC_HPP_INCLUDED_
  16. #define BOOST_ATOMIC_DETAIL_CAPS_GCC_PPC_HPP_INCLUDED_
  17. #include <boost/atomic/detail/config.hpp>
  18. #include <boost/atomic/detail/hwcaps_gcc_ppc.hpp>
  19. #ifdef BOOST_HAS_PRAGMA_ONCE
  20. #pragma once
  21. #endif
  22. #define BOOST_ATOMIC_INT8_LOCK_FREE 2
  23. #define BOOST_ATOMIC_INT16_LOCK_FREE 2
  24. #define BOOST_ATOMIC_INT32_LOCK_FREE 2
  25. #if defined(BOOST_ATOMIC_DETAIL_PPC_HAS_LDARX_STDCX)
  26. #define BOOST_ATOMIC_INT64_LOCK_FREE 2
  27. #endif
  28. #define BOOST_ATOMIC_POINTER_LOCK_FREE 2
  29. #define BOOST_ATOMIC_THREAD_FENCE 2
  30. #define BOOST_ATOMIC_SIGNAL_FENCE 2
  31. #endif // BOOST_ATOMIC_DETAIL_CAPS_GCC_PPC_HPP_INCLUDED_