OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [testsuite/] [22_locale/] [locale/] [cons/] [12658_thread-1.cc] - Blame information for rev 19

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 19 jlechner
// { 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* } }
4
// { dg-require-namedlocale "" }
5
 
6
// Copyright (C) 2004, 2005 Free Software Foundation
7
//
8
// This file is part of the GNU ISO C++ Library.  This library is free
9
// software; you can redistribute it and/or modify it under the
10
// terms of the GNU General Public License as published by the
11
// Free Software Foundation; either version 2, or (at your option)
12
// any later version.
13
 
14
// This library is distributed in the hope that it will be useful,
15
// but WITHOUT ANY WARRANTY; without even the implied warranty of
16
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
// GNU General Public License for more details.
18
 
19
// You should have received a copy of the GNU General Public License along
20
// with this library; see the file COPYING.  If not, write to the Free
21
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22
// USA.
23
 
24
// 22.1.1.2 locale constructors and destructors [lib.locale.cons]
25
 
26
#include <locale>
27
#include <pthread.h>
28
#include <testsuite_hooks.h>
29
 
30
const int max_thread_count = 20;
31
//const int max_loop_count = 1000000; // orig value
32
const int max_loop_count = 100000;
33
const int max_locales = 10;
34
 
35
void* thread_main(void*)
36
{
37
  try
38
    {
39
      std::locale loc_c = std::locale::classic();
40
      std::locale loc[max_locales];
41
      for (int j = 0; j < max_locales; ++j)
42
        loc[j] = std::locale(j % 2 ? "en_US" : "fr_FR");
43
 
44
      for (int i = 0; i < max_loop_count; ++i)
45
        {
46
          int k = i % max_locales;
47
          loc[k] = std::locale::global(loc[k]);
48
 
49
          if (i % 37 == 0)
50
            loc[k] = loc[k].combine<std::ctype<char> >(loc_c);
51
        }
52
    }
53
  catch (...) { }
54
  return 0;
55
}
56
 
57
int
58
main()
59
{
60
  pthread_t tid[max_thread_count];
61
 
62
  for (int i = 0; i < max_thread_count; i++)
63
    pthread_create (&tid[i], NULL, thread_main, 0);
64
 
65
  for (int i = 0; i < max_thread_count; i++)
66
    pthread_join (tid[i], NULL);
67
 
68
  return 0;
69
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.