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/ipc_atomic.hpp>
8 #include <boost/atomic/ipc_atomic_flag.hpp>
9
10 #include <boost/config.hpp>
11 #include <boost/cstdint.hpp>
12
13 #include "ipc_wait_test_helpers.hpp"
14
main(int,char * [])15 int main(int, char *[])
16 {
17 test_flag_wait_notify_api();
18
19 test_wait_notify_api< ipc_atomic_wrapper, boost::uint8_t >(1, 2, 3);
20 test_wait_notify_api< ipc_atomic_wrapper, boost::uint16_t >(1, 2, 3);
21 test_wait_notify_api< ipc_atomic_wrapper, boost::uint32_t >(1, 2, 3);
22 test_wait_notify_api< ipc_atomic_wrapper, boost::uint64_t >(1, 2, 3);
23 #if defined(BOOST_HAS_INT128) && !defined(BOOST_ATOMIC_TESTS_NO_INT128)
24 test_wait_notify_api< ipc_atomic_wrapper, boost::uint128_type >(1, 2, 3);
25 #endif
26
27 return boost::report_errors();
28 }
29