Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
found a hidden unsigned long
[simgrid.git] / include / simgrid / platf.h
index 9017c61..6639f2c 100644 (file)
@@ -80,8 +80,6 @@ static inline char* sg_storage_name(sg_storage_t storage) {
   return storage->key;
 }
 
-
-
 /*
  * Platform creation functions. Instead of passing 123 arguments to the creation functions
  * (one for each possible XML attribute), we pass structures containing them all. It removes the
@@ -237,7 +235,7 @@ typedef struct {
   const char* content;
   const char* content_type;
   xbt_dict_t properties;
-  unsigned long size; /* size in Gbytes */
+  size_t size;
 } s_sg_platf_storage_type_cbarg_t, *sg_platf_storage_type_cbarg_t;
 
 #define SG_PLATF_STORAGE_TYPE_INITIALIZER {NULL,NULL,NULL,NULL,NULL}