Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libstdc++-v3 / testsuite / 22_locale / locale / cons / 12658_thread-1.cc
blob898b423f7dce9660daf546144e267a0e280da031
1 // { dg-do run { target *-*-freebsd* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* alpha*-*-osf* } }
2 // { dg-options "-pthread" { target *-*-freebsd* *-*-netbsd* *-*-linux* alpha*-*-osf* } }
3 // { dg-options "-pthreads" { target *-*-solaris* } }
5 // Copyright (C) 2004 Free Software Foundation
6 //
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 2, or (at your option)
11 // any later version.
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING. If not, write to the Free
20 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 // USA.
23 // 22.1.1.2 locale constructors and destructors [lib.locale.cons]
25 // { dg-do run { xfail *-*-linux* } }
27 #include <locale>
28 #include <pthread.h>
29 #include <testsuite_hooks.h>
31 const int max_thread_count = 20;
32 //const int max_loop_count = 1000000; // orig value
33 const int max_loop_count = 100000;
34 const int max_locales = 10;
36 void* thread_main(void*)
38 try
40 std::locale loc_c = std::locale::classic();
41 std::locale loc[max_locales];
42 for (int j = 0; j < max_locales; ++j)
43 loc[j] = __gnu_test::try_named_locale(j % 2 ? "en_US" : "fr_FR");
45 for (int i = 0; i < max_loop_count; ++i)
47 int k = i % max_locales;
48 loc[k] = std::locale::global(loc[k]);
50 if (i % 37 == 0)
51 loc[k] = loc[k].combine<std::ctype<char> >(loc_c);
54 catch (...) { }
55 return 0;
58 int
59 main()
61 pthread_t tid[max_thread_count];
63 for (int i = 0; i < max_thread_count; i++)
64 pthread_create (&tid[i], NULL, thread_main, 0);
66 for (int i = 0; i < max_thread_count; i++)
67 pthread_join (tid[i], NULL);
69 return 0;