]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/ext/mt_allocator/deallocate_local_thread-5.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / ext / mt_allocator / deallocate_local_thread-5.cc
CommitLineData
a1340af7
BK
1// { dg-require-cxa-atexit "" }
2
7adcbafe 3// Copyright (C) 2004-2022 Free Software Foundation, Inc.
a1340af7
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
a1340af7
BK
9// any later version.
10//
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.
15//
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
a1340af7
BK
19
20// 20.4.1.1 allocator members
21
22#include <string>
23#include <stdexcept>
b7e2f896 24#include <cstdio>
a1340af7 25#include <ext/mt_allocator.h>
daa15929 26#include <replacement_memory_operators.h>
a1340af7
BK
27
28template<bool _Thread>
29 struct cleanup_pool : public __gnu_cxx::__pool<true>
30 {
31 cleanup_pool() : __gnu_cxx::__pool<true>() { }
32
33 cleanup_pool(const __gnu_cxx::__pool_base::_Tune& t)
34 : __gnu_cxx::__pool<true>(t) { }
35
36 ~cleanup_pool() throw() { this->_M_destroy(); }
37 };
38
a1340af7
BK
39typedef char value_type;
40typedef std::char_traits<value_type> traits_type;
41typedef __gnu_cxx::__common_pool_policy<cleanup_pool, true> policy_type;
42typedef __gnu_cxx::__mt_alloc<value_type, policy_type> allocator_type;
43typedef std::basic_string<value_type, traits_type, allocator_type> string_type;
44
45int main()
46{
daa15929
BK
47 // NB: __mt_allocator doesn't clean itself up. Thus, the count will
48 // not be zero.
49 __gnu_test::counter::exceptions(false);
a1340af7
BK
50 string_type s;
51 s += "bayou bend";
52 return 0;
53}