
See http://cpp.winxgui.com/boost-memory-0-2-00 On Fri, May 16, 2008 at 5:33 PM, shiwei xu <xushiweizh@gmail.com> wrote:
What is new?
1. Lock-free free list (workarounds ABA problem). 2. Provide both region allocators (boost::auto_alloc, boost::scoped_alloc) and general-purpose allocators (boost::gc_alloc). 3. Notes: To fit for C++ exception semantics (See the example named "testExceptionSemantics"), I updated the specification of GC Allocator.
Highlights:
1. Allocating memory is very fast. 2. No memory leaks. No need to delete objects manually. Or forgetting to delete objects is allowed.
Thanks:
* Steven Watanabe * Scott McMurray * Tim * Diduck, Lance
To gain the source code, you can:
1. Svn checkout http://winx.googlecode.com/svn/tags/boost-memory-0.2.00/. 2. Svn checkout http://svn.boost.org/svn/boost/sandbox/memory/.