Account for prologue spills in reg_pressure scheduling
[official-gcc.git] / libstdc++-v3 / testsuite / 18_support / pthread_guard.cc
blob7ac344f31ce3f0f6b65c04a656634610b1649be6
1 //
2 // Copyright (C) 2007-2014 Free Software Foundation, Inc.
3 //
4 // This file is part of the GNU ISO C++ Library. This library is free
5 // software; you can redistribute it and/or modify it under the
6 // terms of the GNU General Public License as published by the
7 // Free Software Foundation; either version 3, or (at your option)
8 // any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this library; see the file COPYING3. If not see
17 // <http://www.gnu.org/licenses/>.
19 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-gnu* *-*-solaris* *-*-cygwin *-*-darwin* } }
20 // { dg-options "-pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-gnu* *-*-solaris* *-*-darwin* } }
22 #include <cstdlib>
23 #include <pthread.h>
25 // This used to deadlock with the old libstdc++ because there is only one
26 // global mutex guarding initialization of statics and it is held during by
27 // the initializer thread of a static until the variable is completely
28 // initialized. If the initializer thread creates and waits for another thread
29 // which also initializes a static variable, there will be a deadlock because
30 // the first thread is holding the mutex and waiting for the second thread,
31 // which is blocked when it is acquiring the mutex.
33 int
34 get_bar (void)
36 return 1;
39 void*
40 do_something (void *arg)
42 static int bar __attribute__((unused)) = get_bar ();
43 return 0;
46 int
47 get_foo (void)
49 pthread_t new_thread;
51 if (pthread_create (&new_thread, 0, do_something, 0) != 0)
52 std::abort ();
54 if (pthread_join (new_thread, 0) != 0)
55 std::abort ();
57 return 1;
60 int
61 main (int argc, char **argv)
63 static int foo __attribute__((unused)) = get_foo ();
64 return 0;