Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Declaration of the MSG_task_receive_from_host() function
[simgrid.git] / include / msg / datatypes.h
index 8034f9f..e8b5ce1 100644 (file)
@@ -9,10 +9,11 @@
 #define MSG_DATATYPE_H
 #include "xbt/misc.h"
 
-BEGIN_DECL()
+SG_BEGIN_DECL()
 
 /* ******************************** Host ************************************ */
-/** @defgroup m_datatypes_management_details */
+/** @defgroup m_datatypes_management_details Details on MSG datatypes
+    @ingroup  m_datatypes_management*/
 
 typedef struct simdata_host *simdata_host_t;
 /** @brief Host datatype 
@@ -83,15 +84,6 @@ typedef struct m_process {
 typedef struct m_process *m_process_t;
 /** @} */
 
-/** @brief Agent code
-    @ingroup m_datatypes_management 
-    The code of an agent is a m_process_code_t, i.e. a function with no arguments 
-    returning no value.
-    \see m_process_management
-  @{ */
-typedef int(*m_process_code_t)(int argc,char *argv[]) ;
-/** @} */
-
 /* ********************************* Channel ******************************** */
 /** @brief Channel datatype  
     @ingroup m_datatypes_management 
@@ -124,5 +116,5 @@ typedef enum {
 } MSG_error_t;
 /** @} */
 
-END_DECL()
+SG_END_DECL()
 #endif