]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/sort/block_indirect_sort/block_indirect_sort.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / sort / block_indirect_sort / block_indirect_sort.hpp
index 62abde29a50e069de94abcd8ee6ae60296f4f805..31ce3fe6e29cc0fa081838c5907993b2a312e032 100644 (file)
@@ -427,7 +427,7 @@ namespace bscu = boost::sort::common::util;
 //
 //-----------------------------------------------------------------------------
 //  function : block_indirect_sort
-/// @brief parallel sample sort  algorithm (stable sort)
+/// @brief invocation of block_indirtect_sort with 2 parameters
 ///
 /// @param first : iterator to the first element of the range to sort
 /// @param last : iterator after the last element to the range to sort
@@ -443,7 +443,8 @@ void block_indirect_sort(Iter_t first, Iter_t last)
 //
 //-----------------------------------------------------------------------------
 //  function : block_indirect_sort
-/// @brief parallel sample sort  algorithm (stable sort)
+/// @brief invocation of block_indirtect_sort with 3 parameters. The third is 
+///        the number of threads
 ///
 /// @param first : iterator to the first element of the range to sort
 /// @param last : iterator after the last element to the range to sort
@@ -459,7 +460,8 @@ void block_indirect_sort(Iter_t first, Iter_t last, uint32_t nthread)
 //
 //-----------------------------------------------------------------------------
 //  function : block_indirect_sort
-/// @brief parallel sample sort  algorithm (stable sort)
+/// @brief invocation of block_indirtect_sort with 3 parameters. The third is 
+///        the comparison object
 ///
 /// @param first : iterator to the first element of the range to sort
 /// @param last : iterator after the last element to the range to sort
@@ -477,7 +479,7 @@ void block_indirect_sort(Iter_t first, Iter_t last, Compare comp)
 //
 //-----------------------------------------------------------------------------
 //  function : block_indirect_sort
-/// @brief parallel sample sort  algorithm (stable sort)
+/// @brief invocation of block_indirtect_sort with 4 parameters. 
 ///
 /// @param first : iterator to the first element of the range to sort
 /// @param last : iterator after the last element to the range to sort