|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r51495 - sandbox/interthreads/libs/interthreads/doc
From: vicente.botet_at_[hidden]
Date: 2009-03-01 01:17:32
Author: viboes
Date: 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
New Revision: 51495
URL: http://svn.boost.org/trac/boost/changeset/51495
Log:
0.4.1 : adding reference documentation
Text files modified:
sandbox/interthreads/libs/interthreads/doc/appendices.qbk | 1 -
sandbox/interthreads/libs/interthreads/doc/case_studies.qbk | 8 ++++----
sandbox/interthreads/libs/interthreads/doc/concepts.qbk | 2 +-
sandbox/interthreads/libs/interthreads/doc/installation.qbk | 6 +++---
sandbox/interthreads/libs/interthreads/doc/interthreads.qbk | 4 +++-
sandbox/interthreads/libs/interthreads/doc/introduction.qbk | 2 +-
sandbox/interthreads/libs/interthreads/doc/tests.qbk | 2 +-
sandbox/interthreads/libs/interthreads/doc/tickets.qbk | 2 +-
8 files changed, 14 insertions(+), 13 deletions(-)
Modified: sandbox/interthreads/libs/interthreads/doc/appendices.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/appendices.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/appendices.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -124,7 +124,6 @@
[heading Complete the reference]
* ae/act framework
-* typeof
[heading Change the rational and implementation sections]
Modified: sandbox/interthreads/libs/interthreads/doc/case_studies.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/case_studies.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/case_studies.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -21,7 +21,7 @@
typename Composer,
typename AsynchronousExecutor,
typename Input>
- void inplace_solve(AsynchronousExecutor& ae, Problem& input) {
+ void inplace_solve(AsynchronousExecutor& ae, Input& input) {
// if (problem is small)
if (size(range) < concurrency_threshold) {
// directly solve problem
@@ -50,7 +50,7 @@
[endsect]
[/==================================]
-[section Transforming a sequential scheduler on a concurrent one]
+[section From a single to a multi threaded appliation]
[/==================================]
@@ -84,7 +84,7 @@
]
-[/$images/star.png]
+[/$../images/star.png]
Another approach could be to use a queue of output stream buffers for each thread.
Each buffer is timestamped with the creation date and there is a concentrator that takes one by one the elements ordered by the timestamp.
@@ -93,7 +93,7 @@
In this context we can ensure thread safety without locking as far as
the queue has at least two messages.
-[/$images/fourche.png]
+[/$../images/fourche.png]
[pre
Modified: sandbox/interthreads/libs/interthreads/doc/concepts.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/concepts.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/concepts.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -169,7 +169,7 @@
[[`b = has_value(cact)`] [Is true only if `cact` contains a value]]
]
-[heading Member Function `get(act)`]
+[heading Expression `v=get(act)`]
[/==========================================================================================]
Modified: sandbox/interthreads/libs/interthreads/doc/installation.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/installation.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/installation.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -33,7 +33,7 @@
[/=========================]
-[*Boost.InterThreads] depends on Boost. You must use either Boost version 1.37.x
+[*Boost.InterThreads] depends on Boost. You must use either Boost version 1.38.x
or the version in SVN trunk. In particular, __Boost_InterThreads__ depends on:
[variablelist
@@ -110,7 +110,7 @@
[heading Thread safety]
[/====================]
-All functions in the library are thread-unsafe except when notes explicitly.
+All functions in the library are thread-unsafe except when noted explicitly.
[/=======================]
[heading Tested compilers]
@@ -120,7 +120,7 @@
* GCC 3.4.4 Cygwin
* GCC 3.4.6 Linux
-* GCC 4.3.2 Cygwin
+[/* GCC 4.3.2 Cygwin]
* GCC 4.1.2 Linux
[note Please send any questions, comments and bug reports to boost <at> lists <dot> boost <dot> org.]
Modified: sandbox/interthreads/libs/interthreads/doc/interthreads.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/interthreads.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/interthreads.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -70,10 +70,12 @@
[def __IAE__ `IntrinsicAsynchronousExecutor`]
[def __ACT__ `AsynchronousCompletionToken`]
+[def __ACTs__ `AsynchronousCompletionToken`s]
[def __FutureBasedACT__ `FutureBasedACT`]
[def __ThreadBasedACT__ `ThreadBasedACT`]
[def __Future__ inherits from `unique_future|shared_future`]
+[def __Sequence__ `Sequence`]
[def __Nullary__ `Nullary`]
[def __Movable__ `Movable`]
[def __CopyConstructible__ `CopyConstructible`]
@@ -86,7 +88,7 @@
[template fork_link[link_text] [link interthreads.reference.ae_act_framework_reference.ae_operations.fork_hpp.non_member_function [link_text]]]
[def __forkss__ [link interthreads.reference.ae_act_framework_reference.ae_operations.fork_hpp.non_member_function `fork`]
-[def __fork__ [fork_link `fork`]]
+[def __fork__ `fork`]
[def __fork_after__ `fork_after`]
[def __get__ `get`]
Modified: sandbox/interthreads/libs/interthreads/doc/introduction.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/introduction.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/introduction.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -32,7 +32,7 @@
Behind all these proposal there is a concept of asynchronous executor, fork-like function and
the asynchronous completion token handle.
-[table fork Parameters
+[table AE/ACT/fork-like relationship
[
[[*Proposal]] [[*executor]] [[*fork-like]] [[*ACT handle]]
]
Modified: sandbox/interthreads/libs/interthreads/doc/tests.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/tests.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/tests.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -5,7 +5,7 @@
http://www.boost.org/LICENSE_1_0.txt).
]
-[section Appendix E: Tests]
+[section:tests Appendix E: Tests]
[section AE/ACT]
Modified: sandbox/interthreads/libs/interthreads/doc/tickets.qbk
==============================================================================
--- sandbox/interthreads/libs/interthreads/doc/tickets.qbk (original)
+++ sandbox/interthreads/libs/interthreads/doc/tickets.qbk 2009-03-01 01:17:31 EST (Sun, 01 Mar 2009)
@@ -5,7 +5,7 @@
http://www.boost.org/LICENSE_1_0.txt).
]
-[section Appendix F: Tickets]
+[section:tickets Appendix F: Tickets]
[table
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