From f9ffcc74e4fc1ae9954e60b1e2dba972de07a487 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 5 Nov 2019 16:06:46 +0100 Subject: [PATCH] tiny doc improvements --- include/simgrid/s4u/Actor.hpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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); -- 2.20.1