• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //  Copyright (c) 2020 Andrey Semashev
2 //
3 //  Distributed under the Boost Software License, Version 1.0.
4 //  See accompanying file LICENSE_1_0.txt or copy at
5 //  http://www.boost.org/LICENSE_1_0.txt)
6 
7 #include <boost/atomic/atomic_ref.hpp>
8 #include <boost/atomic/capabilities.hpp>
9 
10 #include <boost/config.hpp>
11 #include <boost/cstdint.hpp>
12 
13 #include "wait_test_helpers.hpp"
14 
main(int,char * [])15 int main(int, char *[])
16 {
17     test_wait_notify_api< atomic_ref_wrapper, boost::uint8_t >(1, 2, 3);
18     test_wait_notify_api< atomic_ref_wrapper, boost::uint16_t >(1, 2, 3);
19     test_wait_notify_api< atomic_ref_wrapper, boost::uint32_t >(1, 2, 3);
20     test_wait_notify_api< atomic_ref_wrapper, boost::uint64_t >(1, 2, 3);
21 #if defined(BOOST_HAS_INT128) && !defined(BOOST_ATOMIC_TESTS_NO_INT128)
22     test_wait_notify_api< atomic_ref_wrapper, boost::uint128_type >(1, 2, 3);
23 #endif
24 
25     {
26         struct_3_bytes s1 = {{ 1 }};
27         struct_3_bytes s2 = {{ 2 }};
28         struct_3_bytes s3 = {{ 3 }};
29         test_wait_notify_api< atomic_ref_wrapper, struct_3_bytes >(s1, s2, s3);
30     }
31     {
32         large_struct s1 = {{ 1 }};
33         large_struct s2 = {{ 2 }};
34         large_struct s3 = {{ 3 }};
35         test_wait_notify_api< atomic_ref_wrapper, large_struct >(s1, s2, s3);
36     }
37 
38     return boost::report_errors();
39 }
40