diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0c09db148cecd94d7b9fb468dcf945e7299b6745..410f39f7f29209b04138972518d1c1d0e6ee42ea 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2006-09-25 Paolo Carlini <pcarlini@suse.de> + + PR libstdc++/29179 + * include/ext/mt_allocator.h (__pool_base): Adjust/extend + documentation in comments. + 2006-09-24 Paolo Carlini <pcarlini@suse.de> * include/tr1/boost_shared_ptr.h (shared_ptr<>::shared_ptr(const diff --git a/libstdc++-v3/include/ext/mt_allocator.h b/libstdc++-v3/include/ext/mt_allocator.h index 4dcd4373e4e608bbfa20de00c7dd33752563c63a..bc2d61f6eecd8a069c0235b8348d18e71ffd9c91 100644 --- a/libstdc++-v3/include/ext/mt_allocator.h +++ b/libstdc++-v3/include/ext/mt_allocator.h @@ -50,7 +50,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx) struct __pool_base { // Using short int as type for the binmap implies we are never - // caching blocks larger than 65535 with this allocator. + // caching blocks larger than 32768 with this allocator. typedef unsigned short int _Binmap_type; // Variables used to configure the behavior of the allocator, @@ -73,19 +73,23 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx) // Allocation requests (after round-up to power of 2) below // this value will be handled by the allocator. A raw new/ // call will be used for requests larger than this value. + // NB: Must be much smaller than _M_chunk_size and in any + // case <= 32768. size_t _M_max_bytes; - + // Size in bytes of the smallest bin. - // NB: Must be a power of 2 and >= _M_align. + // NB: Must be a power of 2 and >= _M_align (and of course + // much smaller than _M_max_bytes). size_t _M_min_bin; - + // In order to avoid fragmenting and minimize the number of // new() calls we always request new memory using this // value. Based on previous discussions on the libstdc++ // mailing list we have choosen the value below. // See http://gcc.gnu.org/ml/libstdc++/2001-07/msg00077.html + // NB: At least one order of magnitude > _M_max_bytes. size_t _M_chunk_size; - + // The maximum number of supported threads. For // single-threaded operation, use one. Maximum values will // vary depending on details of the underlying system. (For @@ -93,7 +97,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx) // /proc/sys/kernel/threads-max, while Linux 2.6.6 reports // 65534) size_t _M_max_threads; - + // Each time a deallocation occurs in a threaded application // we make sure that there are no more than // _M_freelist_headroom % of used memory on the freelist. If