X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f679512d82a1ab52c61c4ccebc5144362334a65a..d7137248837c462e9a20c5640f2c74541faa7ef5:/src/s4u/s4u_Host.cpp diff --git a/src/s4u/s4u_Host.cpp b/src/s4u/s4u_Host.cpp index e70d67e785..ba215f595a 100644 --- a/src/s4u/s4u_Host.cpp +++ b/src/s4u/s4u_Host.cpp @@ -206,18 +206,18 @@ void Host::route_to(Host* dest, std::vector& links, /** Get the properties assigned to a host */ std::map* Host::getProperties() { - return simgrid::simix::simcall([this] { return this->pimpl_->getProperties(); }); + return simgrid::simix::simcall([this] { return this->pimpl_->get_properties(); }); } /** Retrieve the property value (or nullptr if not set) */ const char* Host::get_property(const char* key) { - return this->pimpl_->getProperty(key); + return this->pimpl_->get_property(key); } void Host::set_property(std::string key, std::string value) { - simgrid::simix::simcall([this, key, value] { this->pimpl_->setProperty(key, value); }); + simgrid::simix::simcall([this, key, value] { this->pimpl_->set_property(key, value); }); } /** @brief Get the peak processor speed (in flops/s), at the specified pstate */