thread.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // thread.hpp --------------------------------------------------------------//
  2. // Copyright 2010 Vicente J. Botet Escriba
  3. // Copyright 2015 Andrey Semashev
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See http://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_DETAIL_WINAPI_THREAD_HPP
  7. #define BOOST_DETAIL_WINAPI_THREAD_HPP
  8. #include <boost/detail/winapi/basic_types.hpp>
  9. #include <boost/detail/winapi/get_current_thread.hpp>
  10. #include <boost/detail/winapi/get_current_thread_id.hpp>
  11. #ifdef BOOST_HAS_PRAGMA_ONCE
  12. #pragma once
  13. #endif
  14. #if !defined( BOOST_USE_WINDOWS_H )
  15. extern "C" {
  16. BOOST_SYMBOL_IMPORT boost::detail::winapi::DWORD_ WINAPI
  17. SleepEx(
  18. boost::detail::winapi::DWORD_ dwMilliseconds,
  19. boost::detail::winapi::BOOL_ bAlertable);
  20. BOOST_SYMBOL_IMPORT boost::detail::winapi::VOID_ WINAPI Sleep(boost::detail::winapi::DWORD_ dwMilliseconds);
  21. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI SwitchToThread(BOOST_DETAIL_WINAPI_VOID);
  22. }
  23. #endif
  24. namespace boost {
  25. namespace detail {
  26. namespace winapi {
  27. using ::SleepEx;
  28. using ::Sleep;
  29. using ::SwitchToThread;
  30. }
  31. }
  32. }
  33. #endif // BOOST_DETAIL_WINAPI_THREAD_HPP