aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/doc/xml/manual/allocator.xml
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@gcc.gnu.org>2008-04-10 22:14:17 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2008-04-10 22:14:17 +0000
commit4394b61e02706f4315e0cb68d728e2e5019788c4 (patch)
treec64df8273cf6e04bebe90ef6f9ed7194af968680 /libstdc++-v3/doc/xml/manual/allocator.xml
parent276e95ca1593bd1c467a219c55670d637cec8e46 (diff)
downloadgcc-4394b61e02706f4315e0cb68d728e2e5019788c4.zip
gcc-4394b61e02706f4315e0cb68d728e2e5019788c4.tar.gz
gcc-4394b61e02706f4315e0cb68d728e2e5019788c4.tar.bz2
[multiple changes]
2008-04-10 Benjamin Kosnik <bkoz@redhat.com> * doc/html/*: Regenerate. 2008-04-10 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> * doc/xml/manual/bitmap_allocator.xml: Improve wording a bit. * doc/xml/authors.xml: Fix typos. * doc/xml/faq.xml: Likewise. * doc/xml/manual/abi.xml: Likewise. * doc/xml/manual/allocator.xml: Likewise. * doc/xml/manual/appendix_contributing.xml: Likewise. * doc/xml/manual/backwards_compatibility.xml: Likewise. * doc/xml/manual/build_hacking.xml: Likewise. * doc/xml/manual/codecvt.xml: Likewise. * doc/xml/manual/concurrency.xml: Likewise. * doc/xml/manual/ctype.xml: Likewise. * doc/xml/manual/debug_mode.xml: Likewise. * doc/xml/manual/diagnostics.xml: Likewise. * doc/xml/manual/evolution.xml: Likewise. * doc/xml/manual/extensions.xml: Likewise. * doc/xml/manual/locale.xml: Likewise. * doc/xml/manual/messages.xml: Likewise. * doc/xml/manual/parallel_mode.xml: Likewise. * doc/xml/manual/status_cxx200x.xml: Likewise. * doc/xml/manual/strings.xml: Likewise. * doc/xml/manual/support.xml: Likewise. * doc/xml/manual/test.xml: Likewise. * doc/xml/manual/using.xml: Likewise. 2008-04-10 Benjamin Kosnik <bkoz@redhat.com> Johannes Singler <singler@ira.uka.de> * doc/xml/manual/parallel_mode.xml: Remove map/set bulk insertors. Correct omp_set_num_threads example. From-SVN: r134178
Diffstat (limited to 'libstdc++-v3/doc/xml/manual/allocator.xml')
-rw-r--r--libstdc++-v3/doc/xml/manual/allocator.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/libstdc++-v3/doc/xml/manual/allocator.xml b/libstdc++-v3/doc/xml/manual/allocator.xml
index 213d82b..cc325be 100644
--- a/libstdc++-v3/doc/xml/manual/allocator.xml
+++ b/libstdc++-v3/doc/xml/manual/allocator.xml
@@ -19,7 +19,7 @@
class template called <classname>allocator</classname>. The
<classname>allocator</classname> abstraction is used throughout the
library in <classname>string</classname>, container classes,
- algorithnms, and parts of iostreams. This class, and base classes of
+ algorithms, and parts of iostreams. This class, and base classes of
it, are the superset of available free store (<quote>heap</quote>)
management classes.
</para>
@@ -261,7 +261,7 @@
directly, for every allocation. (See
<filename>include/ext/new_allocator.h</filename>, for instance.)
However, that option would involve changing source code to use
- the a non-default allocator. Another option is to force the
+ a non-default allocator. Another option is to force the
default allocator to remove caching and pools, and to directly
allocate with every call of <function>allocate</function> and
directly deallocate with every call of
@@ -397,7 +397,7 @@
</para>
<para>
Includes memory tracking and marking abilities as well as hooks for
- throwing exceptinos at configurable intervals (including random,
+ throwing exceptions at configurable intervals (including random,
all, none).
</para>
</listitem>
@@ -447,7 +447,7 @@
<para>The <varname>thr</varname> boolean determines whether the
pool should be manipulated atomically or not. When
<varname>thr</varname> = <constant>true</constant>, the allocator
- is is threadsafe, while <varname>thr</varname> =
+ is is thread-safe, while <varname>thr</varname> =
<constant>false</constant>, and is slightly faster but unsafe for
multiple threads.
</para>
@@ -455,7 +455,7 @@
<para>
For thread-enabled configurations, the pool is locked with a
single big lock. In some situations, this implementation detail
- may result in severe performance degredation.
+ may result in severe performance degradation.
</para>
<para>