Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove deprecated features for next release (3.39).
[simgrid.git] / include / simgrid / s4u / Comm.hpp
index 1d527779ed38cd3459c893fc9d8b08d8b7155ae9..dbb61ce61596787429347e2c0b4acedfeb39ebac 100644 (file)
@@ -70,10 +70,6 @@ public:
   void on_this_recv_cb(const std::function<void(Comm const&)>& cb) { on_this_recv.connect(cb); }
 
   CommPtr set_copy_data_callback(const std::function<void(kernel::activity::CommImpl*, void*, size_t)>& callback);
-  XBT_ATTRIB_DEPRECATED_v338("Please manifest if you actually need this function") static void copy_buffer_callback(
-      kernel::activity::CommImpl*, void*, size_t);
-  XBT_ATTRIB_DEPRECATED_v338("Please manifest if you actually need this function") static void copy_pointer_callback(
-      kernel::activity::CommImpl*, void*, size_t);
 
   ~Comm() override;
 
@@ -183,21 +179,6 @@ public:
   }
 
   Comm* wait_for(double timeout) override;
-
-  /*! \static take a vector s4u::CommPtr and return the rank of the first finished one (or -1 if none is done). */
-  static ssize_t test_any(const std::vector<CommPtr>& comms);
-
-  /*! \static take a vector s4u::CommPtr and return when one of them is finished.
-   * The return value is the rank of the first finished CommPtr. */
-  static ssize_t wait_any(const std::vector<CommPtr>& comms) { return wait_any_for(comms, -1); }
-  /*! \static Same as wait_any, but with a timeout. Return -1 if the timeout occurs.*/
-  static ssize_t wait_any_for(const std::vector<CommPtr>& comms, double timeout);
-
-#ifndef DOXYGEN
-  XBT_ATTRIB_DEPRECATED_v339("Please use ActivitySet instead") static void wait_all(const std::vector<CommPtr>& comms);
-  XBT_ATTRIB_DEPRECATED_v339("Please use ActivitySet instead") static size_t
-      wait_all_for(const std::vector<CommPtr>& comms, double timeout);
-#endif
 };
 } // namespace simgrid::s4u