X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49f1e451a96e0ef39bc0eb2864b8ae5ff6ced04b..4c542c0fc6507f1da7c21d208779a7c035ddb302:/src/surf/storage_private.h diff --git a/src/surf/storage_private.h b/src/surf/storage_private.h index d0a7265121..ee023b417f 100644 --- a/src/surf/storage_private.h +++ b/src/surf/storage_private.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2013. The SimGrid Team. +/* Copyright (c) 2009, 2012-2013. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -13,8 +13,7 @@ typedef struct s_storage_type { char *content_type; char *type_id; xbt_dict_t properties; - size_t size; - size_t used_size; + sg_storage_size_t 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; + sg_storage_size_t size; } s_surf_file_t; typedef struct surf_storage { @@ -42,12 +33,13 @@ typedef struct surf_storage { 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 */ + xbt_dict_t content; char* content_type; - size_t size; - size_t used_size; + sg_storage_size_t size; + sg_storage_size_t used_size; char *type_id; xbt_dynar_t write_actions; + xbt_dict_t properties; } s_storage_t, *storage_t; typedef enum {