X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a7708e874685bdc7a883c4c9c09f37f0e39dca44..dc4066f005c4827b8169f71ea0c500b6dc311721:/src/surf/storage_private.h?ds=sidebyside diff --git a/src/surf/storage_private.h b/src/surf/storage_private.h index 534b1d025a..dccf6f3966 100644 --- a/src/surf/storage_private.h +++ b/src/surf/storage_private.h @@ -12,7 +12,7 @@ typedef struct s_storage_type { char *content; char *type_id; xbt_dict_t properties; - unsigned long size; + size_t size; } s_storage_type_t, *storage_type_t; typedef struct s_mount { @@ -27,14 +27,14 @@ typedef struct surf_file { } s_surf_file_t; typedef struct storage { - s_surf_resource_t generic_resource; /*< Structure with generic data. Needed at begin to interact with SURF */ + //FIXME:s_surf_resource_t generic_resource; /*< Structure with generic data. Needed at begin to interact with SURF */ e_surf_resource_state_t state_current; /*< STORAGE current state (ON or OFF) */ lmm_constraint_t constraint; /* Constraint for maximum bandwidth from connection */ 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 */ - unsigned long size; - unsigned long used_size; + size_t size; + size_t used_size; xbt_dynar_t write_actions; } s_storage_t, *storage_t; @@ -43,7 +43,7 @@ typedef enum { } e_surf_action_storage_type_t; typedef struct surf_action_storage { - s_surf_action_lmm_t generic_lmm_action; + //FIXME:s_surf_action_lmm_t generic_lmm_action; e_surf_action_storage_type_t type; void *storage; } s_surf_action_storage_t, *surf_action_storage_t;