X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c633850c450067d7d5f6d4b6e1b93e14e76b29eb..f4417e41e71fcf25feb676ae7ab0e00823d54add:/src/surf/StorageImpl.cpp diff --git a/src/surf/StorageImpl.cpp b/src/surf/StorageImpl.cpp index 95c0ffe301..03e1f87329 100644 --- a/src/surf/StorageImpl.cpp +++ b/src/surf/StorageImpl.cpp @@ -62,11 +62,9 @@ StorageImpl::StorageImpl(Model* model, const char* name, lmm_system_t maxminSyst const char* type_id, const char* content_name, sg_size_t size, const char* attach) : Resource(model, name, lmm_constraint_new(maxminSystem, this, MAX(bread, bwrite))) , piface_(this) - , size_(size) - , usedSize_(0) , typeId_(type_id) + , size_(size) , attach_(attach) - , writeActions_(std::vector()) { content_ = parseContent(content_name); turnOn(); @@ -156,20 +154,6 @@ sg_size_t StorageImpl::getUsedSize() /********** * Action * **********/ -StorageAction::StorageAction(Model* model, double cost, bool failed, StorageImpl* storage, - e_surf_action_storage_type_t type) - : Action(model, cost, failed), type_(type), storage_(storage), file_(nullptr) -{ - progress_ = 0; -}; - -StorageAction::StorageAction(Model* model, double cost, bool failed, lmm_variable_t var, StorageImpl* storage, - e_surf_action_storage_type_t type) - : Action(model, cost, failed, var), type_(type), storage_(storage), file_(nullptr) -{ - progress_ = 0; -} - void StorageAction::setState(Action::State state) { Action::State old = getState();