2004-10-11 Benjamin Kosnik <bkoz@redhat.com>
[official-gcc.git] / libstdc++-v3 / testsuite / ext / mt_allocator / tune-2.cc
blob1dcf084502b45d0daaa52c1776068015f161fc60
1 // 2004-08-25 Benjamin Kosnik <bkoz@redhat.com>
2 //
3 // Copyright (C) 2004 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
21 #include <testsuite_hooks.h>
22 #include <memory>
23 #include <ext/mt_allocator.h>
25 // Tune characteristics.
26 // __per_type_pool_policy
27 void test02()
29 bool test __attribute__((unused)) = true;
31 typedef __gnu_test::pod_int value_type;
32 #ifdef __GTHREADS
33 typedef __gnu_cxx::__per_type_pool_policy<value_type, true> policy_type;
34 #else
35 typedef __gnu_cxx::__per_type_pool_policy<value_type, false> policy_type;
36 #endif
37 typedef __gnu_cxx::__mt_alloc<value_type, policy_type> allocator_type;
38 typedef __gnu_cxx::__pool_base::_Tune tune_type;
40 tune_type t_opt(16, 5120, 32, 5120, 20, 10, false);
41 tune_type t_single(16, 5120, 32, 5120, 1, 10, false);
43 allocator_type a;
44 tune_type t_default = a._M_get_options();
45 tune_type t1 = t_default;
46 a._M_set_options(t_opt);
47 tune_type t2 = a._M_get_options();
48 VERIFY( t1._M_align != t2._M_align );
50 allocator_type::pointer p1 = a.allocate(128);
51 allocator_type::pointer p2 = a.allocate(5128);
52 a._M_set_options(t_single);
53 t1 = a._M_get_options();
54 VERIFY( t1._M_max_threads != t_single._M_max_threads );
55 VERIFY( t1._M_max_threads == t_opt._M_max_threads );
57 a.deallocate(p1, 128);
58 a.deallocate(p2, 5128);
61 int main()
63 test02();
65 return 0;