Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
More memory leaks.
[simgrid.git] / src / surf / storage_private.h
index 9979e03..eed61ab 100644 (file)
@@ -14,7 +14,6 @@ typedef struct s_storage_type {
   char *type_id;
   xbt_dict_t properties;
   size_t size;
-  size_t used_size;
 } s_storage_type_t, *storage_type_t;
 
 typedef struct s_mount {
@@ -35,11 +34,12 @@ typedef struct surf_storage {
   lmm_constraint_t constraint_write;    /* Constraint for maximum write bandwidth*/
   lmm_constraint_t constraint_read;     /* Constraint for maximum write bandwidth*/
   xbt_dict_t content; /* char * -> s_surf_file_t */
+  char* content_type;
   size_t size;
   size_t used_size;
   char *type_id;
-  char *content_type;
   xbt_dynar_t write_actions;
+  xbt_dict_t properties;
 } s_storage_t, *storage_t;
 
 typedef enum {