diff options
author | Jonathan Wakely <jwakely.gcc@gmail.com> | 2011-11-20 20:05:58 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2011-11-20 20:05:58 +0000 |
commit | c37e6675275487f1f4ae6ee7fcae5365eb3a89b2 (patch) | |
tree | 5f5c13eb0b0d3d11942c8c920b966352e2069bf8 | |
parent | 062a902517fae875a44f73117ee795cdad5e7aaf (diff) | |
download | gcc-c37e6675275487f1f4ae6ee7fcae5365eb3a89b2.zip gcc-c37e6675275487f1f4ae6ee7fcae5365eb3a89b2.tar.gz gcc-c37e6675275487f1f4ae6ee7fcae5365eb3a89b2.tar.bz2 |
* doc/xml/manual/status_cxx2011.xml: Fix docbook markup.
From-SVN: r181533
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/doc/xml/manual/status_cxx2011.xml | 18 |
2 files changed, 13 insertions, 9 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 49da2c4..a48aaef 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2011-11-20 Jonathan Wakely <jwakely.gcc@gmail.com> + * doc/xml/manual/status_cxx2011.xml: Fix docbook markup. + +2011-11-20 Jonathan Wakely <jwakely.gcc@gmail.com> + * doc/xml/manual/appendix_contributing.xml: Do not use "here" as link text. * doc/xml/faq.xml: Likewise. Do not request standard library issues diff --git a/libstdc++-v3/doc/xml/manual/status_cxx2011.xml b/libstdc++-v3/doc/xml/manual/status_cxx2011.xml index 34aff81..f47710e 100644 --- a/libstdc++-v3/doc/xml/manual/status_cxx2011.xml +++ b/libstdc++-v3/doc/xml/manual/status_cxx2011.xml @@ -2648,29 +2648,29 @@ particular release. <methodname>native_handle</methodname> are provided. The handle types are defined in terms of the Gthreads abstraction layer. <itemizedlist> - <listitem><classname>thread</classname>: The native handle type is + <listitem><para><classname>thread</classname>: The native handle type is a typedef for <code>__gthread_t</code> i.e. <code>pthread_t</code> when GCC is configured with the <literal>posix</literal> thread model. The value of the native handle is undefined for a thread which is not joinable. - </listitem> - <listitem><classname>mutex</classname> and - <classname>timed_mutex</classname>: + </para></listitem> + <listitem><para><classname>mutex</classname> and + <classname>timed_mutex</classname>: The native handle type is <code>__gthread_mutex_t*</code> i.e. <code>pthread_mutex_t*</code> for the <literal>posix</literal> thread model. - </listitem> - <listitem><classname>recursive_mutex</classname> and + </para></listitem> + <listitem><para><classname>recursive_mutex</classname> and <classname>recursive_timed_mutex</classname>: The native handle type is <code>__gthread_recursive_mutex_t*</code> i.e. <code>pthread_mutex_t*</code> for the <literal>posix</literal> thread model. - </listitem> - <listitem><classname>condition_variable</classname>: The native + </para></listitem> + <listitem><para><classname>condition_variable</classname>: The native handle type is <code>__gthread_cond_t*</code> i.e. <code>pthread_cond_t*</code> for the <literal>posix</literal> thread model. - </listitem> + </para></listitem> </itemizedlist> </para> |