X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c1139d8e995d20f3afebc6cb69c66c155348dbdd..8372ae97612f27b84e8d75aeeed9de0ba6d2ba6a:/src/surf/StorageImpl.cpp diff --git a/src/surf/StorageImpl.cpp b/src/surf/StorageImpl.cpp index 56ad247a9a..2916346406 100644 --- a/src/surf/StorageImpl.cpp +++ b/src/surf/StorageImpl.cpp @@ -30,9 +30,9 @@ simgrid::xbt::signalconstraint_new(this, std::max(bread, bwrite))) , piface_(name, this) @@ -65,7 +65,7 @@ StorageImpl::~StorageImpl() storageDestructedCallbacks(this); } -bool StorageImpl::isUsed() +bool StorageImpl::is_used() { THROW_UNIMPLEMENTED; return false; @@ -94,10 +94,10 @@ void StorageImpl::turnOff() /********** * Action * **********/ -void StorageAction::setState(Action::State state) +void StorageAction::set_state(Action::State state) { - Action::State old = getState(); - Action::setState(state); + Action::State old = get_state(); + Action::set_state(state); storageActionStateChangedCallbacks(this, old, state); } }