Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix doc
authorMartin Quinson <martin.quinson@loria.fr>
Sun, 10 Sep 2017 16:08:31 +0000 (18:08 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sun, 10 Sep 2017 16:08:31 +0000 (18:08 +0200)
ChangeLog
examples/s4u/README.doc

index 251ba08..44c39b1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@ SimGrid (3.17) UNRELEASED (release target: September 22 2017)
  S4U
   - Comm.detach(): start and forget about asynchronous emission
   - this_actor::send(mailbox) is now mailbox->put()
+  - New: simgrid::s4u::Comm::wait_all()
 
  SURF
   - Unused option network/sender-gap is removed.
index 6e14a5e..d566c5a 100644 (file)
@@ -42,12 +42,12 @@ documentation, but it should remain readable directly.
 
  - <b>Waiting for all communications in a set</b>.
    @ref examples/s4u/async-waitall/s4u_async-waitall.cpp\n
-   The @ref S4U_comm_waitall function is useful when you want to block
+   The @ref simgrid::s4u::Comm::wait_all() function is useful when you want to block
    until all activities in a given set have completed.
 
  - <b>Waiting for the first completed communication in a set</b>.
    @ref examples/s4u/async-waitany/s4u_async-waitany.cpp\n
-   The @ref S4U_comm_waitany function is useful when you want to block
+   The @ref simgrid::s4u::Comm::wait_any() function is useful when you want to block
    until one activity of the set completes, no matter which terminates
    first.