From: Martin Quinson Date: Tue, 5 Nov 2019 15:06:46 +0000 (+0100) Subject: tiny doc improvements X-Git-Tag: v3.25~432 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/f9ffcc74e4fc1ae9954e60b1e2dba972de07a487 tiny doc improvements --- diff --git a/include/simgrid/s4u/Actor.hpp b/include/simgrid/s4u/Actor.hpp index ba7162acac..fcdae2ad70 100644 --- a/include/simgrid/s4u/Actor.hpp +++ b/include/simgrid/s4u/Actor.hpp @@ -396,14 +396,13 @@ XBT_PUBLIC void execute(double flop, double priority); XBT_PUBLIC void parallel_execute(const std::vector& hosts, const std::vector& flops_amounts, const std::vector& bytes_amounts); -/** \rst - * Block the current actor until the built :ref:`parallel execution ` completes, or until the - * timeout. \endrst - */ +/** Block the current actor until the built parallel execution completes, or until the timeout. */ XBT_PUBLIC void parallel_execute(const std::vector& hosts, const std::vector& flops_amounts, const std::vector& bytes_amounts, double timeout); +/** Initialize a sequential execution that must then be started manually */ XBT_PUBLIC ExecPtr exec_init(double flops_amounts); +/** Initialize a parallel execution that must then be started manually */ XBT_PUBLIC ExecPtr exec_init(const std::vector& hosts, const std::vector& flops_amounts, const std::vector& bytes_amounts);