X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/937f2eb5b429c3c03fc989a25fbc26fabd0cf529..65ab3b5aa9b78d6e4e5f1d595788b6393554d565:/examples/s4u/platform-properties/s4u-platform-properties.cpp diff --git a/examples/s4u/platform-properties/s4u-platform-properties.cpp b/examples/s4u/platform-properties/s4u-platform-properties.cpp index 085464e95a..b0298ce0f8 100644 --- a/examples/s4u/platform-properties/s4u-platform-properties.cpp +++ b/examples/s4u/platform-properties/s4u-platform-properties.cpp @@ -51,30 +51,27 @@ static void test_host(std::string hostname) thehost->set_property(exist, "180"); } -static int alice(int argc, char* argv[]) +static void alice(std::vector /*args*/) { /* Dump what we have on the current host */ test_host("host1"); - return 0; } -static int carole(int argc, char* argv[]) +static void carole(std::vector /*args*/) { /* Dump what we have on a remote host */ simgrid::s4u::this_actor::sleep_for(1); // Wait for alice to be done with its experiment test_host("host1"); - return 0; } -static int david(int argc, char* argv[]) +static void david(std::vector /*args*/) { /* Dump what we have on a remote host */ simgrid::s4u::this_actor::sleep_for(2); // Wait for alice and carole to be done with its experiment test_host("node-0.acme.org"); - return 0; } -static int bob(int argc, char* argv[]) +static void bob(std::vector /*args*/) { /* this host also tests the properties of the AS*/ simgrid::s4u::NetZone* root = simgrid::s4u::Engine::get_instance()->get_netzone_root(); @@ -96,7 +93,6 @@ static int bob(int argc, char* argv[]) value = simgrid::s4u::Actor::self()->get_property(noexist); xbt_assert(not value, "The property is defined (it should not)"); - return 0; } int main(int argc, char* argv[])