| 1 | // 2002-01-23 Loren J. Rittle <[email protected]> <[email protected]>
|
|---|
| 2 | // Adpated from libstdc++/5347 submitted by [email protected]
|
|---|
| 3 | //
|
|---|
| 4 | // Copyright (C) 2002 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.
|
|---|
| 11 | //
|
|---|
| 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.
|
|---|
| 16 | //
|
|---|
| 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.
|
|---|
| 21 |
|
|---|
| 22 | // { dg-do run { target *-*-freebsd* *-*-linux* *-*-solaris* *-*-cygwin } }
|
|---|
| 23 | // { dg-options "-pthread" { target *-*-freebsd* *-*-linux* } }
|
|---|
| 24 | // { dg-options "-pthreads" { target *-*-solaris* } }
|
|---|
| 25 |
|
|---|
| 26 | #include <fstream>
|
|---|
| 27 |
|
|---|
| 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.
|
|---|
| 30 |
|
|---|
| 31 | #if __GTHREADS
|
|---|
| 32 |
|
|---|
| 33 | const int max_thread_count = 2;
|
|---|
| 34 | const int max_loop_count = 1000000;
|
|---|
| 35 |
|
|---|
| 36 | void*
|
|---|
| 37 | thread_main (void *)
|
|---|
| 38 | {
|
|---|
| 39 | for (int i = 0; i < max_loop_count; i++)
|
|---|
| 40 | {
|
|---|
| 41 | std::ofstream* pos1 = new std::ofstream;
|
|---|
| 42 | delete pos1;
|
|---|
| 43 | }
|
|---|
| 44 |
|
|---|
| 45 | return 0;
|
|---|
| 46 | }
|
|---|
| 47 |
|
|---|
| 48 | int
|
|---|
| 49 | main()
|
|---|
| 50 | {
|
|---|
| 51 | pthread_t tid[max_thread_count];
|
|---|
| 52 |
|
|---|
| 53 | #if defined(__sun) && defined(__svr4__)
|
|---|
| 54 | pthread_setconcurrency (max_thread_count);
|
|---|
| 55 | #endif
|
|---|
| 56 |
|
|---|
| 57 | for (int i = 0; i < max_thread_count; i++)
|
|---|
| 58 | pthread_create (&tid[i], NULL, thread_main, 0);
|
|---|
| 59 |
|
|---|
| 60 | for (int i = 0; i < max_thread_count; i++)
|
|---|
| 61 | pthread_join (tid[i], NULL);
|
|---|
| 62 |
|
|---|
| 63 | return 0;
|
|---|
| 64 | }
|
|---|
| 65 | #else
|
|---|
| 66 | int main (void) {}
|
|---|
| 67 | #endif
|
|---|