wait.hpp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. // wait.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_WAIT_HPP
  7. #define BOOST_DETAIL_WINAPI_WAIT_HPP
  8. #include <boost/detail/winapi/basic_types.hpp>
  9. #ifdef BOOST_HAS_PRAGMA_ONCE
  10. #pragma once
  11. #endif
  12. #if !defined( BOOST_USE_WINDOWS_H )
  13. extern "C" {
  14. BOOST_SYMBOL_IMPORT boost::detail::winapi::DWORD_ WINAPI
  15. WaitForSingleObject(
  16. boost::detail::winapi::HANDLE_ hHandle,
  17. boost::detail::winapi::DWORD_ dwMilliseconds);
  18. BOOST_SYMBOL_IMPORT boost::detail::winapi::DWORD_ WINAPI
  19. WaitForMultipleObjects(
  20. boost::detail::winapi::DWORD_ nCount,
  21. boost::detail::winapi::HANDLE_ const* lpHandles,
  22. boost::detail::winapi::BOOL_ bWaitAll,
  23. boost::detail::winapi::DWORD_ dwMilliseconds);
  24. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_NT4
  25. BOOST_SYMBOL_IMPORT boost::detail::winapi::DWORD_ WINAPI
  26. SignalObjectAndWait(
  27. boost::detail::winapi::HANDLE_ hObjectToSignal,
  28. boost::detail::winapi::HANDLE_ hObjectToWaitOn,
  29. boost::detail::winapi::DWORD_ dwMilliseconds,
  30. boost::detail::winapi::BOOL_ bAlertable);
  31. #endif
  32. }
  33. #endif
  34. namespace boost {
  35. namespace detail {
  36. namespace winapi {
  37. using ::WaitForMultipleObjects;
  38. using ::WaitForSingleObject;
  39. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_NT4
  40. using ::SignalObjectAndWait;
  41. #endif
  42. #if defined( BOOST_USE_WINDOWS_H )
  43. const DWORD_ INFINITE_ = INFINITE;
  44. const DWORD_ WAIT_ABANDONED_ = WAIT_ABANDONED;
  45. const DWORD_ WAIT_OBJECT_0_ = WAIT_OBJECT_0;
  46. const DWORD_ WAIT_TIMEOUT_ = WAIT_TIMEOUT;
  47. const DWORD_ WAIT_FAILED_ = WAIT_FAILED;
  48. #else // defined( BOOST_USE_WINDOWS_H )
  49. const DWORD_ INFINITE_ = (DWORD_)0xFFFFFFFF;
  50. const DWORD_ WAIT_ABANDONED_ = 0x00000080L;
  51. const DWORD_ WAIT_OBJECT_0_ = 0x00000000L;
  52. const DWORD_ WAIT_TIMEOUT_ = 0x00000102L;
  53. const DWORD_ WAIT_FAILED_ = (DWORD_)0xFFFFFFFF;
  54. #endif // defined( BOOST_USE_WINDOWS_H )
  55. const DWORD_ infinite = INFINITE_;
  56. const DWORD_ wait_abandoned = WAIT_ABANDONED_;
  57. const DWORD_ wait_object_0 = WAIT_OBJECT_0_;
  58. const DWORD_ wait_timeout = WAIT_TIMEOUT_;
  59. const DWORD_ wait_failed = WAIT_FAILED_;
  60. const DWORD_ max_non_infinite_wait = (DWORD_)0xFFFFFFFE;
  61. }
  62. }
  63. }
  64. #endif // BOOST_DETAIL_WINAPI_WAIT_HPP