X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b24f30653c7107b2c85ea2f3704f722efe8648e6..05ac94f042a0e8534114f7f31a40a36af730a680:/src/surf/storage_private.h diff --git a/src/surf/storage_private.h b/src/surf/storage_private.h index 4b95551419..f27d6502b9 100644 --- a/src/surf/storage_private.h +++ b/src/surf/storage_private.h @@ -10,11 +10,10 @@ typedef struct s_storage_type { char *model; - xbt_dict_t content; /* char * -> s_surf_stat_t */ + char *content; char *type_id; xbt_dict_t properties; unsigned long size; - unsigned long used_size; } s_storage_type_t, *storage_type_t; typedef struct s_mount { @@ -30,6 +29,7 @@ typedef struct surf_stat { /* file status structure */ typedef struct surf_file { char *name; surf_stat_t content; + const char* storage; } s_surf_file_t; typedef struct storage { @@ -38,15 +38,20 @@ typedef struct storage { lmm_constraint_t constraint; /* Constraint for maximum bandwidth from connexion */ 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_stat_t */ + unsigned long size; + unsigned long used_size; + xbt_dynar_t write_actions; } s_storage_t, *storage_t; typedef enum { - READ, WRITE, STAT, OPEN, CLOSE + READ=0, WRITE, STAT, OPEN, CLOSE } e_surf_action_storage_type_t; typedef struct surf_action_storage { 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; #endif /* STORAGE_PRIVATE_H_ */