X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0cd4d8c91c2648bdcb5d1f095132c0930e9427b7..6157f90cc9d3cce63b341338c15e91af8ccd6347:/examples/s4u/actor-join/s4u-actor-join.cpp diff --git a/examples/s4u/actor-join/s4u-actor-join.cpp b/examples/s4u/actor-join/s4u-actor-join.cpp index 843594f518..e91264c1cb 100644 --- a/examples/s4u/actor-join/s4u-actor-join.cpp +++ b/examples/s4u/actor-join/s4u-actor-join.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2017-2018. 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. */ @@ -20,22 +19,22 @@ static void master() simgrid::s4u::ActorPtr actor; XBT_INFO("Start sleeper"); - actor = simgrid::s4u::Actor::createActor("sleeper from master", simgrid::s4u::Host::current(), sleeper); + actor = simgrid::s4u::Actor::create("sleeper from master", simgrid::s4u::Host::current(), sleeper); XBT_INFO("Join the sleeper (timeout 2)"); actor->join(2); XBT_INFO("Start sleeper"); - actor = simgrid::s4u::Actor::createActor("sleeper from master", simgrid::s4u::Host::current(), sleeper); + actor = simgrid::s4u::Actor::create("sleeper from master", simgrid::s4u::Host::current(), sleeper); XBT_INFO("Join the sleeper (timeout 4)"); actor->join(4); XBT_INFO("Start sleeper"); - actor = simgrid::s4u::Actor::createActor("sleeper from master", simgrid::s4u::Host::current(), sleeper); + actor = simgrid::s4u::Actor::create("sleeper from master", simgrid::s4u::Host::current(), sleeper); XBT_INFO("Join the sleeper (timeout 2)"); actor->join(2); XBT_INFO("Start sleeper"); - actor = simgrid::s4u::Actor::createActor("sleeper from master", simgrid::s4u::Host::current(), sleeper); + actor = simgrid::s4u::Actor::create("sleeper from master", simgrid::s4u::Host::current(), sleeper); XBT_INFO("Waiting 4"); simgrid::s4u::this_actor::sleep_for(4); XBT_INFO("Join the sleeper after its end (timeout 1)"); @@ -55,7 +54,7 @@ int main(int argc, char* argv[]) e.loadPlatform(argv[1]); - simgrid::s4u::Actor::createActor("master", simgrid::s4u::Host::by_name("Tremblay"), master); + simgrid::s4u::Actor::create("master", simgrid::s4u::Host::by_name("Tremblay"), master); e.run();