X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9d2c040038a30947074e95b808690438a9e225b9..9a94db9ebea7a49f58308560099411d4ab59b183:/docs/source/app_s4u.rst diff --git a/docs/source/app_s4u.rst b/docs/source/app_s4u.rst index 004080a133..0d96ba5291 100644 --- a/docs/source/app_s4u.rst +++ b/docs/source/app_s4u.rst @@ -169,10 +169,6 @@ use :cpp:func:`s4u::Activity::wait_for() `. Finally, to wait at most until a specified time limit, use :cpp:func:`s4u::Activity::wait_until() `. -.. todo:: - - wait_for and wait_until are currently not implemented for Exec and Io activities. - Every kind of activity can be asynchronous: - :ref:`s4u::CommPtr ` are created with @@ -571,6 +567,7 @@ Specifying when actors should terminate .. autodoxymethod:: sg_actor_restart(sg_actor_t actor) .. autodoxymethod:: sg_actor_daemonize(sg_actor_t actor) + .. autodoxymethod:: sg_actor_is_daemon .. _API_s4u_Actor_end: @@ -1262,14 +1259,15 @@ Platform and routing .. autodoxymethod:: simgrid::s4u::Host::get_netpoint() const .. autodoxymethod:: simgrid::s4u::Host::route_to(const Host *dest, std::vector< Link *> &links, double *latency) const .. autodoxymethod:: simgrid::s4u::Host::route_to(const Host *dest, std::vector< kernel::resource::LinkImpl *> &links, double *latency) const - .. autodoxymethod:: simgrid::s4u::Host::send_to(Host *dest, double byte_amount) + .. autodoxymethod:: simgrid::s4u::Host::sendto(Host *dest, double byte_amount) + .. autodoxymethod:: simgrid::s4u::Host::sendto_async(Host *dest, double byte_amount) .. group-tab:: C .. autodoxymethod:: sg_host_route(const_sg_host_t from, const_sg_host_t to, xbt_dynar_t links) .. autodoxymethod:: sg_host_route_bandwidth(const_sg_host_t from, const_sg_host_t to) .. autodoxymethod:: sg_host_route_latency(const_sg_host_t from, const_sg_host_t to) - .. autodoxymethod:: sg_host_send_to(sg_host_t from, sg_host_t to, double byte_amount) + .. autodoxymethod:: sg_host_sendto(sg_host_t from, sg_host_t to, double byte_amount) Signals -------