thread.hpp 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // detail/thread.hpp
  3. // ~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_DETAIL_THREAD_HPP
  11. #define BOOST_ASIO_DETAIL_THREAD_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #if !defined(BOOST_ASIO_HAS_THREADS)
  17. # include <boost/asio/detail/null_thread.hpp>
  18. #elif defined(BOOST_ASIO_WINDOWS)
  19. # if defined(BOOST_ASIO_WINDOWS_APP) || defined(UNDER_CE)
  20. # include <boost/asio/detail/winapi_thread.hpp>
  21. # else
  22. # include <boost/asio/detail/win_thread.hpp>
  23. # endif
  24. #elif defined(BOOST_ASIO_HAS_PTHREADS)
  25. # include <boost/asio/detail/posix_thread.hpp>
  26. #elif defined(BOOST_ASIO_HAS_STD_THREAD)
  27. # include <boost/asio/detail/std_thread.hpp>
  28. #else
  29. # error Only Windows, POSIX and std::thread are supported!
  30. #endif
  31. namespace boost {
  32. namespace asio {
  33. namespace detail {
  34. #if !defined(BOOST_ASIO_HAS_THREADS)
  35. typedef null_thread thread;
  36. #elif defined(BOOST_ASIO_WINDOWS)
  37. # if defined(BOOST_ASIO_WINDOWS_APP) || defined(UNDER_CE)
  38. typedef winapi_thread thread;
  39. # else
  40. typedef win_thread thread;
  41. # endif
  42. #elif defined(BOOST_ASIO_HAS_PTHREADS)
  43. typedef posix_thread thread;
  44. #elif defined(BOOST_ASIO_HAS_STD_THREAD)
  45. typedef std_thread thread;
  46. #endif
  47. } // namespace detail
  48. } // namespace asio
  49. } // namespace boost
  50. #endif // BOOST_ASIO_DETAIL_THREAD_HPP