Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix some warnings in doc
[simgrid.git] / doc / ref_guide / doxygen / module-msg.doc
index f908338..d32230c 100644 (file)
@@ -53,7 +53,7 @@ details).
 /** @defgroup m_process_management Process Management Functions
  *  @ingroup MSG_API
  *  @brief This section describes the process structure of MSG
- *         (#m_process_t) and the functions for managing it.
+ *         (#msg_process_t) and the functions for managing it.
  */
 
 /** @defgroup m_host_management Host Management Functions
@@ -64,7 +64,7 @@ details).
 /** @defgroup m_task_management Task Management Functions
  *  @ingroup MSG_API
  *  @brief This section describes the task structure of MSG
- *         (#m_task_t) and the functions for managing it. See
+ *         (#msg_task_t) and the functions for managing it. See
  *         \ref msg_task_usage to see how to put the tasks in action.
  *
  * \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Tasks" --> \endhtmlonly
@@ -116,7 +116,7 @@ there is no such event.
 In such situations, SimGrid allows to write your protocol in your C
 file, and the events to react to in a separate text file. Declare a
 function handling each of the events that you want to accept in your
-trace files, register them using #MSG_action_register in your main,
+trace files, register them using #xbt_replay_action_register in your main,
 and then use #MSG_action_trace_run to launch the simulation. You can
 either have one trace file containing all your events, or a file per
 simulated process.