X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c2c89401822ce6edf5d891533da3c77d633186ac..d9347ab3e960f0f098338c88a79724dbcf4a58bb:/include/msg/datatypes.h diff --git a/include/msg/datatypes.h b/include/msg/datatypes.h index 2a0a11fcf1..598ea84c62 100644 --- a/include/msg/datatypes.h +++ b/include/msg/datatypes.h @@ -89,6 +89,12 @@ typedef struct msg_file { */ typedef struct msg_file *msg_file_t; + +/** @brief File datatype. + @ingroup msg_file_management + + You should consider this as an opaque object. + */ typedef s_file_stat_t s_msg_stat_t, *msg_stat_t; @@ -122,7 +128,7 @@ typedef struct msg_gpu_task *msg_gpu_task_t; */ typedef struct msg_comm *msg_comm_t; -/** \brief Default value for an uninitialized #m_task_t. +/** \brief Default value for an uninitialized #msg_task_t. \ingroup m_task_management */ #define MSG_TASK_UNINITIALIZED NULL @@ -141,14 +147,17 @@ typedef struct msg_comm *msg_comm_t; */ typedef struct s_smx_process *msg_process_t; -/* Compatibility typedefs */ -typedef msg_process_t m_process_t; -typedef msg_host_t m_host_t; -typedef msg_task_t m_task_t; -typedef msg_gpu_task_t m_gpu_task_t; - #ifdef MSG_USE_DEPRECATED -typedef int m_channel_t; + +/* Compatibility typedefs */ +typedef int m_channel_t; +typedef msg_gpu_task_t m_gpu_task_t; +typedef msg_host_t m_host_t; +typedef msg_process_t m_process_t; +typedef msg_task_t m_task_t; +typedef s_msg_gpu_task_t s_m_gpu_task_t; +typedef s_msg_host_t s_m_host_t; +typedef s_msg_task_t s_m_task_t; #endif SG_END_DECL()