Boost C++ Libraries: Ticket #7976: [Atomic] undocument types and macros https://svn.boost.org/trac10/ticket/7976 <p> Some types seems missing in Boost 1.53.0 doc. <a href="http://www.boost.org/doc/libs/1_53_0/doc/html/atomic/interface.html">http://www.boost.org/doc/libs/1_53_0/doc/html/atomic/interface.html</a> </p> <pre class="wiki">namespace boost { typedef atomic&lt;char&gt; atomic_char; typedef atomic&lt;unsigned char&gt; atomic_uchar; typedef atomic&lt;signed char&gt; atomic_schar; typedef atomic&lt;uint8_t&gt; atomic_uint8_t; typedef atomic&lt;int8_t&gt; atomic_int8_t; typedef atomic&lt;unsigned short&gt; atomic_ushort; typedef atomic&lt;short&gt; atomic_short; typedef atomic&lt;uint16_t&gt; atomic_uint16_t; typedef atomic&lt;int16_t&gt; atomic_int16_t; typedef atomic&lt;unsigned int&gt; atomic_uint; typedef atomic&lt;int&gt; atomic_int; typedef atomic&lt;uint32_t&gt; atomic_uint32_t; typedef atomic&lt;int32_t&gt; atomic_int32_t; typedef atomic&lt;unsigned long&gt; atomic_ulong; typedef atomic&lt;long&gt; atomic_long; typedef atomic&lt;uint64_t&gt; atomic_uint64_t; typedef atomic&lt;int64_t&gt; atomic_int64_t; typedef atomic&lt;boost::ulong_long_type&gt; atomic_ullong; typedef atomic&lt;boost::long_long_type&gt; atomic_llong; typedef atomic&lt;void*&gt; atomic_address; typedef atomic&lt;bool&gt; atomic_bool; typedef atomic&lt;wchar_t&gt; atomic_wchar_t; typedef atomic&lt;char16_t&gt; atomic_char16_t; typedef atomic&lt;char32_t&gt; atomic_char32_t; typedef atomic&lt;int_least8_t&gt; atomic_int_least8_t; typedef atomic&lt;uint_least8_t&gt; atomic_uint_least8_t; typedef atomic&lt;int_least16_t&gt; atomic_int_least16_t; typedef atomic&lt;uint_least16_t&gt; atomic_uint_least16_t; typedef atomic&lt;int_least32_t&gt; atomic_int_least32_t; typedef atomic&lt;uint_least32_t&gt; atomic_uint_least32_t; typedef atomic&lt;int_least64_t&gt; atomic_int_least64_t; typedef atomic&lt;uint_least64_t&gt; atomic_uint_least64_t; typedef atomic&lt;int_fast8_t&gt; atomic_int_fast8_t; typedef atomic&lt;uint_fast8_t&gt; atomic_uint_fast8_t; typedef atomic&lt;int_fast16_t&gt; atomic_int_fast16_t; typedef atomic&lt;uint_fast16_t&gt; atomic_uint_fast16_t; typedef atomic&lt;int_fast32_t&gt; atomic_int_fast32_t; typedef atomic&lt;uint_fast32_t&gt; atomic_uint_fast32_t; typedef atomic&lt;int_fast64_t&gt; atomic_int_fast64_t; typedef atomic&lt;uint_fast64_t&gt; atomic_uint_fast64_t; typedef atomic&lt;intmax_t&gt; atomic_intmax_t; typedef atomic&lt;uintmax_t&gt; atomic_uintmax_t; typedef atomic&lt;std::size_t&gt; atomic_size_t; typedef atomic&lt;std::ptrdiff_t&gt; atomic_ptrdiff_t; typedef atomic&lt;intptr_t&gt; atomic_intptr_t; typedef atomic&lt;uintptr_t&gt; atomic_uintptr_t; class atomic_flag; } </pre><p> And feature testing macros: </p> <pre class="wiki">BOOST_ATOMIC_CHAR16_T_LOCK_FREE BOOST_ATOMIC_CHAR32_T_LOCK_FREE BOOST_ATOMIC_WCHAR_T_LOCK_FREE BOOST_ATOMIC_POINTER_LOCK_FREE BOOST_ATOMIC_BOOL_LOCK_FREE BOOST_ATOMIC_FLAG_LOCK_FREE </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/7976 Trac 1.4.3 anonymous Fri, 30 Oct 2015 02:43:43 GMT <link>https://svn.boost.org/trac10/ticket/7976#comment:1 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/7976#comment:1</guid> <description> <p> Why hasn't atomic_flag been documented? </p> </description> <category>Ticket</category> </item> <item> <author>harris.pc@…</author> <pubDate>Fri, 30 Oct 2015 02:44:14 GMT</pubDate> <title>version changed https://svn.boost.org/trac10/ticket/7976#comment:2 https://svn.boost.org/trac10/ticket/7976#comment:2 <ul> <li><strong>version</strong> <span class="trac-field-old">Boost 1.53.0</span> → <span class="trac-field-new">Boost 1.59.0</span> </li> </ul> Ticket Andrey Semashev Sun, 06 Aug 2017 19:06:39 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/7976#comment:3 https://svn.boost.org/trac10/ticket/7976#comment:3 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> All mentioned items are now documented in develop. The new docs will be released in 1.66. </p> Ticket