Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r75010 - trunk/libs/asio/doc
From: chris_at_[hidden]
Date: 2011-10-17 08:10:20


Author: chris_kohlhoff
Date: 2011-10-17 08:10:18 EDT (Mon, 17 Oct 2011)
New Revision: 75010
URL: http://svn.boost.org/trac/boost/changeset/75010

Log:
Fix and regeneration documentation.
Text files modified:
   trunk/libs/asio/doc/reference.qbk | 18 ++++++++++++++++++
   trunk/libs/asio/doc/reference.xsl | 3 ++-
   2 files changed, 20 insertions(+), 1 deletions(-)

Modified: trunk/libs/asio/doc/reference.qbk
==============================================================================
--- trunk/libs/asio/doc/reference.qbk (original)
+++ trunk/libs/asio/doc/reference.qbk 2011-10-17 08:10:18 EDT (Mon, 17 Oct 2011)
@@ -1021,6 +1021,9 @@
 This function is used to asynchronously read a certain number of bytes of data from a stream. The function call always returns immediately. The asynchronous operation will continue until one of the following conditions is true:
 
 
+* The supplied buffer is full (that is, it has reached maximum size).
+
+
 * An error occurred.
 
 This operation is implemented in terms of zero or more calls to the stream's async\_read\_some function, and is known as a [*composed operation]. The program must ensure that the stream performs no other read operations (such as async\_read, the stream's async\_read\_some function, or any other composed operations that perform reads) until this operation completes.
@@ -1092,6 +1095,9 @@
 This function is used to asynchronously read a certain number of bytes of data from a stream. The function call always returns immediately. The asynchronous operation will continue until one of the following conditions is true:
 
 
+* The supplied buffer is full (that is, it has reached maximum size).
+
+
 * The completion\_condition function object returns 0.
 
 This operation is implemented in terms of zero or more calls to the stream's async\_read\_some function, and is known as a [*composed operation]. The program must ensure that the stream performs no other read operations (such as async\_read, the stream's async\_read\_some function, or any other composed operations that perform reads) until this operation completes.
@@ -74432,6 +74438,9 @@
 This function is used to read a certain number of bytes of data from a stream. The call will block until one of the following conditions is true:
 
 
+* The supplied buffer is full (that is, it has reached maximum size).
+
+
 * An error occurred.
 
 This operation is implemented in terms of zero or more calls to the stream's read\_some function.
@@ -74500,6 +74509,9 @@
 This function is used to read a certain number of bytes of data from a stream. The call will block until one of the following conditions is true:
 
 
+* The supplied buffer is full (that is, it has reached maximum size).
+
+
 * An error occurred.
 
 This operation is implemented in terms of zero or more calls to the stream's read\_some function.
@@ -74561,6 +74573,9 @@
 This function is used to read a certain number of bytes of data from a stream. The call will block until one of the following conditions is true:
 
 
+* The supplied buffer is full (that is, it has reached maximum size).
+
+
 * The completion\_condition function object returns 0.
 
 This operation is implemented in terms of zero or more calls to the stream's read\_some function.
@@ -74631,6 +74646,9 @@
 This function is used to read a certain number of bytes of data from a stream. The call will block until one of the following conditions is true:
 
 
+* The supplied buffer is full (that is, it has reached maximum size).
+
+
 * The completion\_condition function object returns 0.
 
 This operation is implemented in terms of zero or more calls to the stream's read\_some function.

Modified: trunk/libs/asio/doc/reference.xsl
==============================================================================
--- trunk/libs/asio/doc/reference.xsl (original)
+++ trunk/libs/asio/doc/reference.xsl 2011-10-17 08:10:18 EDT (Mon, 17 Oct 2011)
@@ -110,7 +110,8 @@
             not(contains(ancestor::*/compoundname, '::detail')) and
             not(contains(ancestor::*/compoundname, '::service::key')) and
             not(contains(ancestor::*/compoundname, '_helper')) and
- not(contains(name, '_helper'))">
+ not(contains(name, '_helper')) and
+ not(contains(name, 'io_service_impl'))">
           <xsl:call-template name="namespace-memberdef"/>
         </xsl:if>
       </xsl:otherwise>


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