1 // { dg-do run { target *-*-freebsd* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* powerpc-ibm-aix* } }
2 // { dg-options " -std=gnu++0x -pthread" { target *-*-freebsd* *-*-netbsd* *-*-linux* powerpc-ibm-aix* } }
3 // { dg-options " -std=gnu++0x -pthreads" { target *-*-solaris* } }
4 // { dg-options " -std=gnu++0x " { target *-*-cygwin *-*-darwin* } }
5 // { dg-require-cstdint "" }
6 // { dg-require-gthreads "" }
8 // Copyright (C) 2010-2013 Free Software Foundation, Inc.
10 // This file is part of the GNU ISO C++ Library. This library is free
11 // software; you can redistribute it and/or modify it under the
12 // terms of the GNU General Public License as published by the
13 // Free Software Foundation; either version 3, or (at your option)
16 // This library is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 // GNU General Public License for more details.
21 // You should have received a copy of the GNU General Public License along
22 // with this library; see the file COPYING3. If not see
23 // <http://www.gnu.org/licenses/>.
27 #include <testsuite_hooks.h>
29 struct unreliable_lock
32 std::unique_lock
<std::mutex
> l
;
38 unreliable_lock() : l(m
, std::defer_lock
) { }
42 bool test
__attribute__((unused
)) = true;
43 VERIFY( !l
.owns_lock() );
48 if (count
== throw_on
)
55 if (count
== throw_on
)
57 std::unique_lock
<std::mutex
> l2(m
, std::defer_lock
);
66 bool test
__attribute__((unused
)) = true;
67 VERIFY( l
.owns_lock() );
73 int unreliable_lock::count
= 0;
74 int unreliable_lock::throw_on
= -1;
75 int unreliable_lock::lock_on
= -1;
79 bool test
__attribute__((unused
)) = true;
81 unreliable_lock l1
, l2
, l3
;
85 unreliable_lock::count
= 0;
86 std::lock(l1
, l2
, l3
);
87 VERIFY( unreliable_lock::count
== 3 );
100 bool test
__attribute__((unused
)) = true;
102 // test behaviour when a lock is already held
105 unreliable_lock::lock_on
= 1;
106 while (unreliable_lock::lock_on
< 3)
108 unreliable_lock::count
= 0;
109 unreliable_lock l1
, l2
, l3
;
110 std::lock(l1
, l2
, l3
);
111 VERIFY( unreliable_lock::count
> 3 );
115 ++unreliable_lock::lock_on
;
126 // test behaviour when an exception is thrown
127 unreliable_lock::throw_on
= 0;
128 while (unreliable_lock::throw_on
< 3)
130 unreliable_lock::count
= 0;
131 unreliable_lock l1
, l2
, l3
;
135 std::lock(l1
, l2
, l3
);
142 ++unreliable_lock::throw_on
;