X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d02345869ec6569f2a9db56a877604e5a933d5f7..4a6c8108ddea55a6c199759bac3bd4f8ca4daf2c:/src/surf/storage_n11.hpp diff --git a/src/surf/storage_n11.hpp b/src/surf/storage_n11.hpp index ff0a122ea7..eab039ec13 100644 --- a/src/surf/storage_n11.hpp +++ b/src/surf/storage_n11.hpp @@ -32,7 +32,7 @@ public: ~StorageN11Model(); Storage *createStorage(const char* id, const char* type_id, const char* content_name, const char* content_type, xbt_dict_t properties, const char* attach) override; - double next_occuring_event(double now) override; + double nextOccuringEvent(double now) override; void updateActionsState(double now, double delta) override; }; @@ -49,12 +49,9 @@ public: StorageAction *open(const char* mount, const char* path); StorageAction *close(surf_file_t fd); StorageAction *ls(const char *path); - StorageAction *read(surf_file_t fd, sg_size_t size);//FIXME:why we have a useless param *?? + StorageAction *read(surf_file_t fd, sg_size_t size); //FIXME:why we have a useless param *?? StorageAction *write(surf_file_t fd, sg_size_t size);//FIXME:why we have a useless param *?? void rename(const char *src, const char *dest); - - lmm_constraint_t p_constraintWrite; /* Constraint for maximum write bandwidth*/ - lmm_constraint_t p_constraintRead; /* Constraint for maximum write bandwidth*/ }; /**********