X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/004ae4fc095dad41016321600e4fcd720ad3d26b..db82f9e75280108116a8e70d2e7a163080020d29:/include/msg/datatypes.h diff --git a/include/msg/datatypes.h b/include/msg/datatypes.h index 598ea84c62..357748aeee 100644 --- a/include/msg/datatypes.h +++ b/include/msg/datatypes.h @@ -7,6 +7,7 @@ #define MSG_DATATYPE_H #include "xbt/misc.h" #include "xbt/file_stat.h" +#include "xbt/lib.h" #include "simgrid/simix.h" #include "simgrid_config.h" // for HAVE_TRACING @@ -26,16 +27,12 @@ SG_BEGIN_DECL() * want to send your task, but only the name of this mailbox. */ typedef struct s_smx_rvpoint *msg_mailbox_t; +/* ******************************** Environment ************************************ */ +typedef struct s_as *msg_as_t; /* ******************************** Host ************************************ */ -typedef struct msg_host { - xbt_swag_t vms; - smx_host_t smx_host; /**< SIMIX representation of this host */ -#ifdef MSG_USE_DEPRECATED - msg_mailbox_t *mailboxes; /**< the channels */ -#endif -} s_msg_host_t; +extern int MSG_HOST_LEVEL; /** @brief Host datatype. @ingroup m_host_management @@ -47,7 +44,24 @@ typedef struct msg_host { some private data that can be only accessed by local process. */ -typedef struct msg_host *msg_host_t; +typedef xbt_dictelm_t msg_host_t; +typedef s_xbt_dictelm_t s_msg_host_t; + +typedef struct msg_host_priv { + int dp_enabled; + xbt_dict_t dp_objs; + double dp_updated_by_deleted_tasks; + +#ifdef MSG_USE_DEPRECATED + msg_mailbox_t *mailboxes; /**< the channels */ +#endif +} s_msg_host_priv_t, *msg_host_priv_t; + +static inline msg_host_priv_t MSG_host_priv(msg_host_t host){ + return (msg_host_priv_t )xbt_lib_get_level(host, MSG_HOST_LEVEL); +} + + /* ******************************** Task ************************************ */ @@ -72,6 +86,13 @@ typedef struct msg_task { */ typedef struct msg_task *msg_task_t; +/* ******************************** VM ************************************* */ +typedef msg_host_t msg_vm_t; +typedef msg_host_priv_t msg_vm_priv_t; + +static inline msg_vm_priv_t MSG_vm_priv(msg_vm_t vm){ + return xbt_lib_get_level(vm, MSG_HOST_LEVEL); +} /* ******************************** File ************************************ */ typedef struct simdata_file *simdata_file_t;