diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-18 21:55:52 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-18 21:55:52 +0000 |
commit | 2d14544cd568a96f201f1a1d9a48b0fd1e89e653 (patch) | |
tree | 9599b25756388a5e62fce7d52fa7208a8b45568e /libstdc++-v3/doc | |
parent | 556a56ddd946ec046842c7adad5e27996c793f7d (diff) | |
download | gcc-2d14544cd568a96f201f1a1d9a48b0fd1e89e653.tar.gz |
* doc/xml/manual/bitmap_allocator.xml: Fix typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@173879 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/doc')
-rw-r--r-- | libstdc++-v3/doc/xml/manual/bitmap_allocator.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/doc/xml/manual/bitmap_allocator.xml b/libstdc++-v3/doc/xml/manual/bitmap_allocator.xml index 19b190661f0..300cbabcd5a 100644 --- a/libstdc++-v3/doc/xml/manual/bitmap_allocator.xml +++ b/libstdc++-v3/doc/xml/manual/bitmap_allocator.xml @@ -23,7 +23,7 @@ <para> As this name suggests, this allocator uses a bit-map to keep track - of the used and unused memory locations for it's book-keeping + of the used and unused memory locations for its book-keeping purposes. </para> <para> @@ -84,7 +84,7 @@ free list if it exists. </para> <para> - Suppose the free list size has reached it's threshold, then the + Suppose the free list size has reached its threshold, then the largest block from among those in the list and the new block will be selected and given back to the OS. This is done because it reduces external fragmentation, and allows the OS to use the @@ -509,7 +509,7 @@ Block a bitmap as well? <orderedlist> <listitem><para>Constant time access for the bitmap themselves, since no kind of -look up will be needed to find the correct bitmap list or it's +look up will be needed to find the correct bitmap list or its equivalent.</para></listitem> <listitem><para>And also this would preserve the cache as far as possible.</para></listitem> </orderedlist> |