Docfix
authorkhizmax <libcds.dev@gmail.com>
Thu, 2 Jul 2015 17:55:55 +0000 (20:55 +0300)
committerkhizmax <libcds.dev@gmail.com>
Thu, 2 Jul 2015 17:55:55 +0000 (20:55 +0300)
cds/container/impl/lazy_list.h
cds/container/michael_set.h
cds/intrusive/basket_queue.h
cds/intrusive/optimistic_queue.h

index 6cfafc291b6628420e5c7624a02062703118c092..1e13589e979067ca029dddba327bd1a01ad5674d 100644 (file)
@@ -10,7 +10,7 @@ namespace cds { namespace container {
 
     /// Lazy ordered list
     /** @ingroup cds_nonintrusive_list
-        \anchor cds_nonintrusive_LazyList_gc
+        @anchor cds_nonintrusive_LazyList_gc
 
         Usually, ordered single-linked list is used as a building block for the hash table implementation.
         The complexity of searching is <tt>O(N)</tt>.
index ce639de769814c138a987ba531987edf259c03d0..5bf3d4a919c2b62152bad6dd3da696f8470a27d6 100644 (file)
@@ -356,7 +356,7 @@ namespace cds { namespace container {
             The user-defined functor is called only if the inserting is success.
 
             @warning For \ref cds_nonintrusive_MichaelList_gc "MichaelList" as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
-            \ref cds_nonintrusive_LazyList_gc "LazyList" provides exclusive access to inserted item and does not require any node-level
+            @ref cds_nonintrusive_LazyList_gc "LazyList" provides exclusive access to inserted item and does not require any node-level
             synchronization.
         */
         template <typename Q, typename Func>
@@ -393,7 +393,7 @@ namespace cds { namespace container {
             already is in the set.
 
             @warning For \ref cds_nonintrusive_MichaelList_gc "MichaelList" as the bucket see \ref cds_intrusive_item_creating "insert item troubleshooting".
-            \ref cds_nonintrusive_LazyList_gc "LazyList" provides exclusive access to inserted item and does not require any node-level
+            @ref cds_nonintrusive_LazyList_gc "LazyList" provides exclusive access to inserted item and does not require any node-level
             synchronization.
             */
         template <typename Q, typename Func>
index f30fb8a8af02ea9c28cd24a3b904281c71d16242..496e582b36ad551fd16b0277c05919be62399010 100644 (file)
@@ -439,11 +439,17 @@ namespace cds { namespace intrusive {
         //@endcond
 
         atomic_marked_ptr    m_pHead ;           ///< Queue's head pointer (aligned)
+        //@cond
         typename opt::details::apply_padding< atomic_marked_ptr, traits::padding >::padding_type pad1_;
+        //@endcond
         atomic_marked_ptr    m_pTail ;           ///< Queue's tail pointer (aligned)
+        //@cond
         typename opt::details::apply_padding< atomic_marked_ptr, traits::padding >::padding_type pad2_;
+        //@endcond
         node_type           m_Dummy ;           ///< dummy node
+        //@cond
         typename opt::details::apply_padding< node_type, traits::padding >::padding_type pad3_;
+        //@endcond
         item_counter        m_ItemCounter   ;   ///< Item counter
         stat                m_Stat  ;           ///< Internal statistics
         //@cond
index 5277c4c056e5ebb67c2521512c75576d8d8dae15..50d0641c2a289af8ec7230d1fa57a4c0d0008fb0 100644 (file)
@@ -428,11 +428,17 @@ namespace cds { namespace intrusive {
         //@endcond
 
         atomic_node_ptr     m_pTail;   ///< Pointer to tail node
+        //@cond
         typename opt::details::apply_padding< atomic_node_ptr, traits::padding >::padding_type pad1_;
+        //@endcond
         atomic_node_ptr     m_pHead;   ///< Pointer to head node
+        //@cond
         typename opt::details::apply_padding< atomic_node_ptr, traits::padding >::padding_type pad2_;
+        //@endcond
         node_type           m_Dummy ;   ///< dummy node
+        //@cond
         typename opt::details::apply_padding< atomic_node_ptr, traits::padding >::padding_type pad3_;
+        //@endcond
         item_counter        m_ItemCounter   ;   ///< Item counter
         stat                m_Stat          ;   ///< Internal statistics