2
0
mirror of https://github.com/boostorg/thread.git synced 2026-01-24 06:22:12 +00:00

Renamed from rw_* to read_write*.

[SVN r23161]
This commit is contained in:
Michael Glassford
2004-06-22 22:17:17 +00:00
parent ffef009696
commit 5982a97bdf
4 changed files with 8 additions and 8 deletions

View File

@@ -15,11 +15,11 @@ last-revision="$Date$">
,
<code>thread_pool</code>
,
<code>rw_mutex</code>
<code>read_write_mutex</code>
,
<code>rw_try_mutex</code>
<code>read_write_try_mutex</code>
and
<code>rw_timed_mutex</code>
<code>read_write_timed_mutex</code>
classes.</para>
<para>Important contributions were also made by Jeremy Siek (lots of input
on the design and on the implementation), Alexander Terekhov (lots of input

View File

@@ -1354,7 +1354,7 @@
</entry>
</row>
<row>
<entry><code>M::scoped_rw_lock</code></entry>
<entry><code>M::scoped_read_write_lock</code></entry>
<entry>A type meeting the
<link linkend="threads.concepts.ScopedReadWriteMutex">ScopedReadWriteLock</link>
requirements. </entry>
@@ -1387,7 +1387,7 @@
<tbody>
<row>
<entry><code>M::scoped_try_rw_lock</code></entry>
<entry><code>M::scoped_try_read_write_lock</code></entry>
<entry>A type meeting the
<link linkend="threads.concepts.ScopedReadWriteMutex">ScopedTryReadWriteLock</link>
requirements.</entry>
@@ -1420,7 +1420,7 @@
<tbody>
<row>
<entry><code>M::scoped_timed_rw_lock</code></entry>
<entry><code>M::scoped_timed_read_write_lock</code></entry>
<entry>A type meeting the
<link linkend="threads.concepts.ScopedReadWriteMutex">ScopedTimedReadWriteLock</link>
requirements.</entry>

View File

@@ -13,7 +13,7 @@
<xi:include href="mutex-ref.xml"/>
<xi:include href="once-ref.xml"/>
<xi:include href="recursive_mutex-ref.xml"/>
<xi:include href="rw_mutex-ref.xml"/>
<xi:include href="read_write_mutex-ref.xml"/>
<xi:include href="thread-ref.xml"/>
<xi:include href="tss-ref.xml"/>
<xi:include href="xtime-ref.xml"/>

View File

@@ -52,7 +52,7 @@ import testing ;
[ run test_once.cpp <template>test ]
[ run test_xtime.cpp <template>test ]
[ run test_barrier.cpp <template>test ]
# [ run test_rw_mutex.cpp <template>test ]
# [ run test_read_write_mutex.cpp <template>test ]
[ run test_thread_pool.cpp <template>test ]
;
}