Skip to content

Commit

Permalink
coroutine: initial commit
Browse files Browse the repository at this point in the history
[SVN r81769]
  • Loading branch information
olk committed Dec 7, 2012
1 parent 651f546 commit f03cb62
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,10 @@
path = libs/heap
url = ../heap.git
fetchRecurseSubmodules = on-demand
[submodule "coroutine"]
path = libs/coroutine
url = ../coroutine.git
fetchRecurseSubmodules = on-demand
[submodule "ratio"]
path = libs/ratio
url = ../ratio.git
Expand Down
1 change: 1 addition & 0 deletions libs/coroutine
Submodule coroutine added at e2b784
5 changes: 3 additions & 2 deletions libs/libraries.htm
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ <h2>Libraries Listed <a name="Alphabetically">Alphabetically</a></h2>
intended for library users.</li>
<li><a href="container/index.html">container</a> - Standard library containers and extensions, from Ion Gazta&ntilde;aga</li>
<li><a href="context/index.html">context</a> - Context switching library, from Oliver Kowalke</li>
<li><a href="conversion/index.html">conversion</a> - Polymorphic and lexical casts, from Dave Abrahams and
Kevlin Henney.</li>
<li><a href="conversion/index.html">conversion</a> - Polymorphic and lexical casts, from Dave Abrahams and Kevlin Henney.</li>
<li><a href="coroutine/index.html">coroutine</a> - Coroutine library, from Oliver Kowalke</li>
<li><a href="crc/index.html">crc</a> - Cyclic Redundancy Code, from Daryle
Walker.</li>
<li><a href="date_time/doc/index.html">date_time</a> - Date-Time library from Jeff Garland.</li>
Expand Down Expand Up @@ -398,6 +398,7 @@ <h3><a name="Concurrent">Concurrent</a> Programming</h3>
I/O, including sockets, timers, hostname resolution, socket iostreams, serial
ports, file descriptors and Windows HANDLEs, from Chris Kohlhoff.</li>
<li><a href="context/index.html">context</a> - Context switching library, from Oliver Kowalke</li>
<li><a href="coroutine/index.html">coroutine</a> - Coroutine library, from Oliver Kowalke</li>
<li><a href="interprocess/index.html">interprocess</a> - Shared memory, memory mapped files,
process-shared mutexes, condition variables, containers and allocators, from Ion Gazta&ntilde;aga</li>
<li><a href="../doc/html/mpi.html">MPI</a> - Message Passing Interface library, for use in distributed-memory parallel application programming, from Douglas Gregor and Matthias Troyer.</li>
Expand Down
1 change: 1 addition & 0 deletions libs/maintainers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ config John Maddock <john -at- johnmaddock.co.uk>
container Ion Gaztanaga <igaztanaga -at- gmail.com>
context Oliver Kowalke <oliver.kowalke -at- gmx.de>
conversion Antony Polukhin <antoshkka -at- gmail.com>
coroutine Oliver Kowalke <oliver.kowalke -at- gmx.de>
crc Daryle Walker <darylew -at- hotmail.com>
date_time Jeff Garland <jeff -at- crystalclearsoftware.com>
disjoint_sets Jeremy Siek <jeremy.siek -at- gmail.com>
Expand Down
1 change: 1 addition & 0 deletions status/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ run-tests libs :
config/test # test-suite config
context/test # test-suite context
conversion/test # test-suite conversion
coroutine/test # test-suite coroutine
crc/test # test-suite crc
date_time/test # test-suite date_time
detail/test # test-suite detail
Expand Down
15 changes: 15 additions & 0 deletions status/explicit-failures-markup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,21 @@
</test>
</library>

<!-- coroutine -->
<library name="coroutine">
<mark-unusable>
<toolset name="cray-*"/>
<toolset name="darwin-4.4"/>
<toolset name="darwin-4.4_0x"/>
<toolset name="gcc-4.4.4"/>
<toolset name="gcc-4.4.4_0x"/>
<toolset name="msvc-8.0"/>
<toolset name="pgi-*"/>
<toolset name="vacpp-*"/>
<toolset name="gcc-mingw-4.4*"/>
</mark-unusable>
</library>

<!-- crc -->
<library name="crc">
<test name="crc_test">
Expand Down

0 comments on commit f03cb62

Please sign in to comment.