X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fb2c0515e1847857acf310a5e5bb057ec8e65438..f9ffcc74e4fc1ae9954e60b1e2dba972de07a487:/include/simgrid/s4u/Actor.hpp 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);