X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/786f43e47b82994eed8e04d98192896dfec0fc43..cbc2112805562213866f62f194adb0a443d9cc99:/examples/s4u/README.rst diff --git a/examples/s4u/README.rst b/examples/s4u/README.rst index d7f8291f70..e949f9fb8e 100644 --- a/examples/s4u/README.rst +++ b/examples/s4u/README.rst @@ -155,10 +155,12 @@ Communications on the Network - **Basic asynchronous communications:** Illustrates how to have non-blocking communications, that are communications running in the background leaving the process free - to do something else during their completion. The main functions - involved are :cpp:func:`simgrid::s4u::Mailbox::put_async()` and - :cpp:func:`simgrid::s4u::Comm::wait()`. - |br| `examples/s4u/async-wait/s4u-async-wait.cpp `_ + to do something else during their completion. + + - |cpp| `examples/s4u/async-wait/s4u-async-wait.cpp `_ + :cpp:func:`simgrid::s4u::Mailbox::put_async()` and :cpp:func:`simgrid::s4u::Comm::wait()` + - |py| `examples/python/async-wait/async-wait.py `_ + :py:func:`simgrid.Mailbox.put_async()` :py:func:`simgrid.Comm.wait()` - **Waiting for all communications in a set:** The :cpp:func:`simgrid::s4u::Comm::wait_all()` function is useful @@ -172,7 +174,7 @@ Communications on the Network matter which terminates first. |br| `examples/s4u/async-waitany/s4u-async-waitany.cpp `_ -.. todo:: add the `ready` example here +.. todo:: review the `ready` and `waituntil` examples and add them here. .. _s4u_ex_execution: