1 // { dg-options "-std=gnu++0x" }
4 // Copyright (C) 2008 Free Software Foundation, Inc.
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
26 using std::atomic_flag_test_and_set;
27 using std::atomic_flag_test_and_set_explicit;
28 using std::atomic_flag_clear;
29 using std::atomic_flag_clear_explicit;
30 using std::atomic_flag_fence;
32 using std::atomic_global_fence_compatibility;
34 // Sloppy testing for integral types (en masse).
35 using std::atomic_is_lock_free;
36 using std::atomic_store;
37 using std::atomic_store_explicit;
38 using std::atomic_load;
39 using std::atomic_load_explicit;
40 using std::atomic_swap;
41 using std::atomic_swap_explicit;
42 using std::atomic_compare_swap;
43 using std::atomic_compare_swap_explicit;
44 using std::atomic_fence;
46 using std::atomic_fetch_add;
47 using std::atomic_fetch_add_explicit;
48 using std::atomic_fetch_sub;
49 using std::atomic_fetch_sub_explicit;