libstdc++: Run tests on RTEMS
[official-gcc.git] / libstdc++-v3 / testsuite / tr1 / 2_general_utilities / shared_ptr / thread / mutex_weaktoshared.cc
blob6bbdb9e00586e81ecd258d837fdd0c5225c7d0ff
1 // Copyright (C) 2006-2015 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // TR1 2.2.2 Template class shared_ptr [tr.util.smartptr.shared]
20 // { dg-do run { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-gnu* *-*-solaris* *-*-cygwin *-*-rtems* *-*-darwin* } }
21 // { dg-options "-pthread" { target *-*-freebsd* *-*-dragonfly* *-*-netbsd* *-*-linux* *-*-gnu* } }
22 // { dg-options "-pthreads" { target *-*-solaris* } }
24 #include <tr1/memory>
25 #include <tr1/random>
26 #include <vector>
27 #include <testsuite_hooks.h>
28 #include <iostream>
29 #include <cstdlib>
31 #include <pthread.h>
33 #ifdef _GLIBCXX_HAVE_UNISTD_H
34 #include <unistd.h> // To test for _POSIX_THREAD_PRIORITY_SCHEDULING
35 #endif
37 /* This (brute-force) tests the atomicity and thus thread safety of the
38 * shared_ptr <- weak_ptr
39 * assignment operation by allocating a test object, retrieving a weak
40 * reference to it, and letting a number of threads repeatedly create strong
41 * references from the weak reference.
42 * Specifically, this tests the function _Sp_counted_base<true>::add_ref_lock()
46 const unsigned int HAMMER_MAX_THREADS = 10;
47 const unsigned int POOL_SIZE = 1000;
48 const unsigned long HAMMER_REPEAT = 100000;
49 const unsigned long KILL_ONE_IN = 1000;
51 struct A
53 static _Atomic_word counter;
54 A()
56 __gnu_cxx::__atomic_add(&counter, 1);
58 ~A()
60 __gnu_cxx::__atomic_add(&counter, -1);
64 _Atomic_word A::counter = 0;
66 using std::tr1::_S_mutex;
68 typedef std::tr1::__shared_ptr<A, _S_mutex> sp_A_t;
69 typedef std::tr1::__weak_ptr<A, _S_mutex> wp_A_t;
71 typedef std::vector<sp_A_t> sp_vector_t;
72 typedef std::vector<wp_A_t> wp_vector_t;
74 struct shared_and_weak_pools
76 sp_vector_t& shared_pool;
77 wp_vector_t& weak_pool;
79 shared_and_weak_pools(sp_vector_t& _shared_pool, wp_vector_t& _weak_pool)
80 : shared_pool(_shared_pool), weak_pool(_weak_pool)
81 { }
84 void* thread_hammer_and_kill(void* opaque_pools)
86 shared_and_weak_pools& pools = *static_cast<shared_and_weak_pools*>(opaque_pools);
87 // Using the same parameters as in the RNG test cases.
88 std::tr1::mersenne_twister<
89 unsigned long, 32, 624, 397, 31,
90 0x9908b0dful, 11, 7,
91 0x9d2c5680ul, 15,
92 0xefc60000ul, 18> rng;
94 sp_vector_t::iterator cur_shared = pools.shared_pool.begin();
95 wp_vector_t::iterator cur_weak = pools.weak_pool.begin();
97 for (unsigned int i = 0; i < HAMMER_REPEAT; ++i)
99 try
101 sp_A_t strong(*cur_weak);
103 catch (std::tr1::bad_weak_ptr& exception)
105 ++cur_weak;
106 if (cur_weak == pools.weak_pool.end())
107 break;
110 if (rng() % KILL_ONE_IN == 0)
112 cur_shared->reset();
113 ++cur_shared;
116 return 0;
119 void* thread_hammer(void* opaque_weak)
121 wp_vector_t& weak_pool = *static_cast<wp_vector_t*>(opaque_weak);
122 // Using the same parameters as in the RNG test cases.
123 std::tr1::mersenne_twister<
124 unsigned long, 32, 624, 397, 31,
125 0x9908b0dful, 11, 7,
126 0x9d2c5680ul, 15,
127 0xefc60000ul, 18> rng;
128 wp_vector_t::iterator cur_weak = weak_pool.begin();
130 for (unsigned int i = 0; i < HAMMER_REPEAT; ++i)
134 sp_A_t strong(*cur_weak);
136 catch (std::tr1::bad_weak_ptr& exception)
138 ++cur_weak;
139 if (cur_weak == weak_pool.end())
140 break;
143 return 0;
147 test01()
149 bool test __attribute__((unused)) = true;
150 sp_vector_t obj_pool(POOL_SIZE);
152 for(sp_vector_t::iterator cur = obj_pool.begin(); cur != obj_pool.end(); ++cur)
154 cur->reset(new A);
156 // Obtain weak references.
157 std::vector<wp_vector_t> weak_pool(HAMMER_MAX_THREADS, wp_vector_t(obj_pool.begin(), obj_pool.end()));
159 // Launch threads with pointer to weak reference.
160 pthread_t threads[HAMMER_MAX_THREADS];
161 #if defined(__sun) && defined(__svr4__) && _XOPEN_VERSION >= 500
162 pthread_setconcurrency (HAMMER_MAX_THREADS);
163 #endif
165 pthread_attr_t tattr;
166 pthread_attr_init(&tattr);
168 shared_and_weak_pools pools(obj_pool, weak_pool[0]);
169 pthread_create(threads, &tattr, thread_hammer_and_kill, static_cast<void*>(&pools));
170 for (unsigned int worker = 1; worker < HAMMER_MAX_THREADS; worker++)
172 if (pthread_create(&threads[worker], &tattr,
173 thread_hammer, static_cast<void*>(&weak_pool[worker])))
174 std::abort();
176 // Wait for threads to complete, then check integrity of reference.
177 void* status;
178 for (unsigned int worker = 0; worker < HAMMER_MAX_THREADS; worker++)
180 if (pthread_join(threads[worker], &status))
181 std::abort();
183 obj_pool.clear();
185 VERIFY( A::counter == 0 );
187 return 0;
190 int
191 main()
193 test01();
194 return 0;