X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a75b3497803ad593515eb6815db046af3b14a2fd..2d37e348a09783cda723c7019640ee69de168324:/src/smpi/internals/smpi_host.cpp diff --git a/src/smpi/internals/smpi_host.cpp b/src/smpi/internals/smpi_host.cpp index d8575d2baf..30573e304a 100644 --- a/src/smpi/internals/smpi_host.cpp +++ b/src/smpi/internals/smpi_host.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -93,21 +93,21 @@ Host::Host(simgrid::s4u::Host *ptr) : host(ptr) if (not Host::EXTENSION_ID.valid()) Host::EXTENSION_ID = simgrid::s4u::Host::extension_create(); - const char* orecv_string = host->getProperty("smpi/or"); + const char* orecv_string = host->get_property("smpi/or"); if (orecv_string != nullptr) { orecv_parsed_values = parse_factor(orecv_string); } else { orecv_parsed_values = parse_factor(simgrid::config::get_value("smpi/or")); } - const char* osend_string = host->getProperty("smpi/os"); + const char* osend_string = host->get_property("smpi/os"); if (osend_string != nullptr) { osend_parsed_values = parse_factor(osend_string); } else { osend_parsed_values = parse_factor(simgrid::config::get_value("smpi/os")); } - const char* oisend_string = host->getProperty("smpi/ois"); + const char* oisend_string = host->get_property("smpi/ois"); if (oisend_string != nullptr) { oisend_parsed_values = parse_factor(oisend_string); } else {