Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libstdc++-v3 / testsuite / thread / pthread2.cc
blob84485165cd27d0236b69c35087ac91f8abfca43e
1 // 2002-01-23 Loren J. Rittle <rittle@labs.mot.com> <ljrittle@acm.org>
2 // Adpated from libstdc++/5347 submitted by markus.breuer@materna.de
3 //
4 // Copyright (C) 2002, 2003 Free Software Foundation, Inc.
5 //
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)
10 // any later version.
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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 // USA.
22 // { dg-do run { target *-*-freebsd* *-*-netbsd* *-*-linux* *-*-solaris* *-*-cygwin *-*-darwin* alpha*-*-osf* } }
23 // { dg-options "-pthread" { target *-*-freebsd* *-*-netbsd* *-*-linux* alpha*-*-osf* } }
24 // { dg-options "-pthreads" { target *-*-solaris* } }
26 #include <fstream>
28 // Do not include <pthread.h> explicitly; if threads are properly
29 // configured for the port, then it is picked up free from STL headers.
31 const int max_thread_count = 2;
32 const int max_loop_count = 1000000;
34 void*
35 thread_main (void *)
37 for (int i = 0; i < max_loop_count; i++)
39 std::ofstream* pos1 = new std::ofstream;
40 delete pos1;
43 return 0;
46 int
47 main()
49 pthread_t tid[max_thread_count];
51 #if defined(__sun) && defined(__svr4__) && _XOPEN_VERSION >= 500
52 pthread_setconcurrency (max_thread_count);
53 #endif
55 for (int i = 0; i < max_thread_count; i++)
56 pthread_create (&tid[i], NULL, thread_main, 0);
58 for (int i = 0; i < max_thread_count; i++)
59 pthread_join (tid[i], NULL);
61 return 0;