Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename msg_storage_priv->host by msg_storage_priv->hostname
[simgrid.git] / include / msg / datatypes.h
index fc63fc4..760a2d8 100644 (file)
@@ -110,7 +110,7 @@ extern int MSG_FILE_LEVEL;
 typedef struct simdata_file *simdata_file_t;
 
 typedef struct msg_file_priv  {
-  char *fullname;
+  char *fullpath;
   sg_size_t size;
   char* mount_point;
   char* storageId;
@@ -138,8 +138,8 @@ typedef xbt_dictelm_t msg_storage_t;
 typedef s_xbt_dictelm_t s_msg_storage_t;
 
 typedef struct msg_storage_priv  {
-  // TODO PV: fill it (or not) !
-  void * dummy;
+  const char *hostname;
+  void *data;
 } s_msg_storage_priv_t, *msg_storage_priv_t;
 
 static inline msg_storage_priv_t MSG_storage_priv(msg_storage_t storage){