X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=blobdiff_plain;f=cds%2Fintrusive%2Flazy_list_nogc.h;h=a50e742a5608b183505f1e6a761caf87c6c12b71;hp=c1c40a38dfef87c31bac4004e1ab627827fc42f1;hb=1503681e52c392bee2329cf66c910be0f8640105;hpb=a2f5834b1b0611a7bb4ebf4e9f7f5838260cc747 diff --git a/cds/intrusive/lazy_list_nogc.h b/cds/intrusive/lazy_list_nogc.h index c1c40a38..a50e742a 100644 --- a/cds/intrusive/lazy_list_nogc.h +++ b/cds/intrusive/lazy_list_nogc.h @@ -159,7 +159,7 @@ namespace cds { namespace intrusive { void dispose_node( node_type * pNode, Disposer disp ) { clear_links( pNode ); - cds::unref(disp)( node_traits::to_value_ptr( *pNode )); + disp( node_traits::to_value_ptr( *pNode )); } template @@ -354,7 +354,7 @@ namespace cds { namespace intrusive { The functor may change non-key fields of the \p item. While the functor \p f is calling the item \p item is locked. - You may pass \p func argument by reference using boost::ref or cds::ref. + You may pass \p func argument by reference using \p std::ref. Returns std::pair where \p first is true if operation is successfull, \p second is true if new item has been added or \p false if the item with \p key @@ -379,7 +379,7 @@ namespace cds { namespace intrusive { \endcode where \p item is the item found, \p val is the find function argument. - You may pass \p f argument by reference using boost::ref or cds::ref. + You may pass \p f argument by reference using \p std::ref. The functor may change non-key fields of \p item. While the functor \p f is calling the item found \p item is locked. @@ -404,7 +404,7 @@ namespace cds { namespace intrusive { \endcode where \p item is the item found, \p val is the find function argument. - You may pass \p f argument by reference using boost::ref or cds::ref. + You may pass \p f argument by reference using \p std::ref. The functor may change non-key fields of \p item. While the functor \p f is calling the item found \p item is locked. @@ -581,7 +581,7 @@ namespace cds { namespace intrusive { if ( pos.pCur != &m_Tail && cmp( *node_traits::to_value_ptr( *pos.pCur ), val ) == 0 ) { // key already in the list - cds::unref(func)( false, *node_traits::to_value_ptr( *pos.pCur ) , val ); + func( false, *node_traits::to_value_ptr( *pos.pCur ) , val ); return std::make_pair( iterator( pos.pCur ), false ); } else { @@ -589,7 +589,7 @@ namespace cds { namespace intrusive { link_checker::is_empty( node_traits::to_node_ptr( val ) ); link_node( node_traits::to_node_ptr( val ), pos.pPred, pos.pCur ); - cds::unref(func)( true, val, val ); + func( true, val, val ); ++m_ItemCounter; return std::make_pair( iterator( node_traits::to_node_ptr( val )), true ); } @@ -615,7 +615,7 @@ namespace cds { namespace intrusive { cds::lock::scoped_lock< typename node_type::lock_type> al( pos.pCur->m_Lock ); if ( cmp( *node_traits::to_value_ptr( *pos.pCur ), val ) == 0 ) { - cds::unref(f)( *node_traits::to_value_ptr( *pos.pCur ), val ); + f( *node_traits::to_value_ptr( *pos.pCur ), val ); return true; } }