Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r71136 - sandbox/shifted_ptr/libs/smart_ptr/doc
From: phil_at_[hidden]
Date: 2011-04-09 00:20:04


Author: pbouchard
Date: 2011-04-09 00:20:01 EDT (Sat, 09 Apr 2011)
New Revision: 71136
URL: http://svn.boost.org/trac/boost/changeset/71136

Log:
* Doc clarifications fix
Text files modified:
   sandbox/shifted_ptr/libs/smart_ptr/doc/overview.html | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: sandbox/shifted_ptr/libs/smart_ptr/doc/overview.html
==============================================================================
--- sandbox/shifted_ptr/libs/smart_ptr/doc/overview.html (original)
+++ sandbox/shifted_ptr/libs/smart_ptr/doc/overview.html 2011-04-09 00:20:01 EDT (Sat, 09 Apr 2011)
@@ -74,8 +74,8 @@
   <h2><a name="gc" id="gc"></a>Garbage Collection</h2>
   <p>Garbage collection is a technique where memory blocks are collected and later deallocated when they are found to be unreferenced by any other object. Garbage
   collection is used by many popular languages because of its very fast allocation and deallocation timing. Unfortunately this technique simply postpones the
- deallocation of the unreferenced objects to later freeze the entire application and collect them using various tracing algorithms. This may be unacceptable for
- real-time applications or device drivers, for example.</p>
+ deallocation of the unreferenced objects to later freeze the entire application, on a single CPU system, and to collect them using various tracing algorithms.
+ This may be unacceptable for real-time applications or device drivers, for example.</p>
 
   <h2><a name="rc" id="rc"></a>Reference Counting</h2>
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk