Commit 07a6e20b by Phil Edwards

stl_alloc.h: Deprecate all 'reallocate' memfns.

2002-06-27  Phil Edwards  <pme@gcc.gnu.org>

	* include/bits/stl_alloc.h:  Deprecate all 'reallocate' memfns.
	* docs/html/ext/howto.html:  Update allocator notes.

From-SVN: r55044
parent 5ce49b4b
2002-06-27 Phil Edwards <pme@gcc.gnu.org>
* include/bits/stl_alloc.h: Deprecate all 'reallocate' memfns.
* docs/html/ext/howto.html: Update allocator notes.
2002-06-26 Benjamin Kosnik <bkoz@redhat.com> 2002-06-26 Benjamin Kosnik <bkoz@redhat.com>
* configure.in (INTERFACE): Remove. * configure.in (INTERFACE): Remove.
......
...@@ -37,7 +37,8 @@ ...@@ -37,7 +37,8 @@
<ul> <ul>
<li><a href="#1">Ropes and trees and hashes, oh my!</a> <li><a href="#1">Ropes and trees and hashes, oh my!</a>
<li><a href="#2">Added members and types</a> <li><a href="#2">Added members and types</a>
<li><a href="#3">Allocators</a> <li><a href="#3">Allocators (versions 3.0, 3.1, 3.2)</a>
<li><a href="#6">Allocators (version 3.3)</a>
<li><a href="#4">Compile-time checks</a> <li><a href="#4">Compile-time checks</a>
<li><a href="#5">LWG Issues</a> <li><a href="#5">LWG Issues</a>
</ul> </ul>
...@@ -154,7 +155,7 @@ ...@@ -154,7 +155,7 @@
</p> </p>
<hr> <hr>
<h2><a name="3">Allocators</a></h2> <h2><a name="3">Allocators (versions 3.0, 3.1, 3.2)</a></h2>
<p>Thread-safety, space efficiency, high speed, portability... this is a <p>Thread-safety, space efficiency, high speed, portability... this is a
mess. Where to begin? mess. Where to begin?
</p> </p>
...@@ -220,17 +221,18 @@ ...@@ -220,17 +221,18 @@
</p> </p>
<h3>Available allocators in namespace std</h3> <h3>Available allocators in namespace std</h3>
<p>First I'll describe the situation as it exists for the code which <p>First I'll describe the situation as it exists for the code which
was released in GCC 3.1. Then I'll was released in GCC 3.1 and 3.2. Then I'll describe the differences
describe the differences for 3.0.x, which will not change much in for 3.0. The allocator classes also have source documentation,
this respect. which is described <a href="../documentation.html#4">here</a> (you
will need to retrieve the maintainer-level docs, as almost none of
these entities are in the ISO standard).
</p> </p>
<p>As a general rule of thumb, users are not allowed to use names which <p>As a general rule of thumb, users are not allowed to use names which
begin with an underscore. This means that to be portable between begin with an underscore. This means that to be portable between
compilers, none of the following may be used in your program directly. compilers, none of the following may be used in your program directly.
(If you decide to be unportable, then you're free do do what you want, (If you decide to be unportable, then you're free do do what you want,
but it's not our fault if stuff breaks.) They are presented here for but it's not our fault if stuff breaks.) They are presented here for
information for maintainers and contributors in addition to users, but information for maintainers and contributors in addition to users.
we will probably make them available for users in 3.2 somehow.
</p> </p>
<p>These classes are always available: <p>These classes are always available:
<ul> <ul>
...@@ -301,7 +303,7 @@ ...@@ -301,7 +303,7 @@
<li><code>__single_client_alloc</code> are all typedef'd to <li><code>__single_client_alloc</code> are all typedef'd to
<code>__malloc_alloc_template</code>. <code>__malloc_alloc_template</code>.
<li><code>__default_alloc_template</code> is no longer available. <li><code>__default_alloc_template</code> is no longer available.
At all. Anywhere. <!-- might change? --> At all. Anywhere.
</ol> </ol>
</p> </p>
<h3>Writing your own allocators</h3> <h3>Writing your own allocators</h3>
...@@ -359,7 +361,13 @@ ...@@ -359,7 +361,13 @@
can affect the 3.0.x allocators. Do not use them. Those macros have can affect the 3.0.x allocators. Do not use them. Those macros have
been completely removed for 3.1. been completely removed for 3.1.
</p> </p>
<p>More notes as we remember them... <p>Return <a href="#top">to top of page</a> or
<a href="../faq/index.html">to the FAQ</a>.
</p>
<hr>
<h2><a name="6">Allocators (version 3.3)</a></h2>
<p>Changes are coming...
</p> </p>
<p>Return <a href="#top">to top of page</a> or <p>Return <a href="#top">to top of page</a> or
<a href="../faq/index.html">to the FAQ</a>. <a href="../faq/index.html">to the FAQ</a>.
...@@ -540,6 +548,7 @@ ...@@ -540,6 +548,7 @@
</dl></p> </dl></p>
<p>Return <a href="#top">to top of page</a> or <p>Return <a href="#top">to top of page</a> or
<a href="../faq/index.html">to the FAQ</a>. <a href="../faq/index.html">to the FAQ</a>.
</p>
<!-- ####################################################### --> <!-- ####################################################### -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment