Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
woops, I broke the build while fixing the doc
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 10 Oct 2018 00:27:36 +0000 (02:27 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 10 Oct 2018 00:27:36 +0000 (02:27 +0200)
include/simgrid/msg.h
include/simgrid/s4u/Actor.hpp
src/msg/msg_task.cpp

index 1092890..a62ed6f 100644 (file)
@@ -236,7 +236,7 @@ typedef struct msg_task* msg_task_t;
 /** @brief Default value for an uninitialized #msg_task_t. */
 #define MSG_TASK_UNINITIALIZED NULL
 
-/** @brief Return code of most MSG functions
+/** @brief Return code of most MSG functions */
 /* Keep these code as binary values: java bindings manipulate | of these values */
 typedef enum {
   MSG_OK = 0,                 /**< @brief Everything is right. Keep on going this way ! */
index 24b30a6..409e257 100644 (file)
@@ -463,11 +463,12 @@ XBT_PUBLIC void execute(double flop, double priority);
  * \endrst
  */
 
-XBT_PUBLIC void parallel_execute(int host_nb, s4u::Host* host_list, double* flops_amount, double* bytes_amount);
+XBT_PUBLIC void parallel_execute(int host_nb, s4u::Host** host_list, double* flops_amount, double* bytes_amount);
 /** \rst
  * Block the actor until the built :ref:`parallel execution <API_s4u_parallel_execute>` completes, or until the timeout.
- * \endrst*/
-XBT_PUBLIC void parallel_execute(int host_nb, s4u::Host* host_list, double* flops_amount, double* bytes_amount,
+ * \endrst
+ */
+XBT_PUBLIC void parallel_execute(int host_nb, s4u::Host** host_list, double* flops_amount, double* bytes_amount,
                                  double timeout);
 
 XBT_PUBLIC ExecPtr exec_init(double flops_amounts);
index 07e6db9..1fb09fc 100644 (file)
@@ -61,7 +61,7 @@ msg_task_t MSG_task_create(const char *name, double flop_amount, double message_
  * A constructor for #msg_task_t taking six arguments and returning the corresponding object.
  *
  * \rst
- * See :cpp:func:`void simgrid::s4u::this_actor::parallel_execute(int, s4u::Host*, double*, double*)` for
+ * See :cpp:func:`void simgrid::s4u::this_actor::parallel_execute(int, s4u::Host**, double*, double*)` for
  * the exact semantic of the parameters.
  * \endrst
  *