X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e7d79b763a5f55d1afb579d2b5a8d30ccfe869c..0ea1a3dca97a66f81466333806853c97af7eb398:/src/surf/storage_n11.hpp diff --git a/src/surf/storage_n11.hpp b/src/surf/storage_n11.hpp index 2df40f38a6..617b285c4c 100644 --- a/src/surf/storage_n11.hpp +++ b/src/surf/storage_n11.hpp @@ -29,8 +29,8 @@ class StorageN11Model : public StorageModel { public: StorageImpl* createStorage(std::string id, std::string type_id, std::string content_name, std::string attach) override; - double nextOccuringEvent(double now) override; - void updateActionsState(double now, double delta) override; + double next_occuring_event(double now) override; + void update_actions_state(double now, double delta) override; }; /************ @@ -55,13 +55,11 @@ public: StorageN11Action(kernel::resource::Model* model, double cost, bool failed, StorageImpl* storage, e_surf_action_storage_type_t type); void suspend() override; - int unref() override; void cancel() override; void resume() override; - bool isSuspended() override; void set_max_duration(double duration) override; void set_priority(double priority) override; - void updateRemainingLazy(double now) override; + void update_remains_lazy(double now) override; }; }