Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : fix error compilation without MC
[simgrid.git] / src / surf / storage_private.h
index 8f8aad9..fe8db87 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 {
@@ -22,18 +21,10 @@ typedef struct s_mount {
   char *name;
 } s_mount_t, *mount_t;
 
-typedef struct s_file_info {
-  size_t size;
-  char* mount_point;
-  char* storageId;
-  char* content_type;
-} s_file_info_t, *surf_file_info_t;
-
 typedef struct surf_file {
   char *name;
   char *mount;
   size_t size;
-  surf_file_info_t info;
 } s_surf_file_t;
 
 typedef struct surf_storage {
@@ -47,7 +38,6 @@ typedef struct surf_storage {
   size_t size;
   size_t used_size;
   char *type_id;
-  char *content_type;
   xbt_dynar_t write_actions;
 } s_storage_t, *storage_t;