Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename an example to stick to the function name
[simgrid.git] / examples / s4u / actor-migration / s4u-actor-migration.cpp
diff --git a/examples/s4u/actor-migration/s4u-actor-migration.cpp b/examples/s4u/actor-migration/s4u-actor-migration.cpp
deleted file mode 100644 (file)
index b9a3636..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-/* Copyright (c) 2017. 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. */
-
-/* This example demonstrate the actor migrations.
- *
- * The worker actor first move by itself, and then start an execution.
- * During that execution, the monitor migrates the worker, that wakes up on another host.
- * The execution was of the right amount of flops to take exactly 5 seconds on the first host
- * and 5 other seconds on the second one, so it stops after 10 seconds.
- *
- * Then another migration is done by the monitor while the worker is suspended.
- *
- * Note that worker() takes an uncommon set of parameters,
- * and that this is perfectly accepted by createActor().
- */
-
-#include <simgrid/s4u.hpp>
-#include <simgrid/s4u/Mutex.hpp>
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_actor_migration, "Messages specific for this s4u example");
-
-static void worker(simgrid::s4u::Host* first, simgrid::s4u::Host* second)
-{
-  double flopAmount = first->getSpeed() * 5 + second->getSpeed() * 5;
-
-  XBT_INFO("Let's move to %s to execute %.2f Mflops (5sec on %s and 5sec on %s)", first->getCname(), flopAmount / 1e6,
-           first->getCname(), second->getCname());
-
-  simgrid::s4u::this_actor::migrate(first);
-  simgrid::s4u::this_actor::execute(flopAmount);
-
-  XBT_INFO("I wake up on %s. Let's suspend a bit", simgrid::s4u::this_actor::getHost()->getCname());
-
-  simgrid::s4u::this_actor::suspend();
-
-  XBT_INFO("I wake up on %s", simgrid::s4u::this_actor::getHost()->getCname());
-  XBT_INFO("Done");
-}
-
-static void monitor()
-{
-  simgrid::s4u::Host* boivin    = simgrid::s4u::Host::by_name("Boivin");
-  simgrid::s4u::Host* jacquelin = simgrid::s4u::Host::by_name("Jacquelin");
-  simgrid::s4u::Host* fafard    = simgrid::s4u::Host::by_name("Fafard");
-
-  simgrid::s4u::ActorPtr actor = simgrid::s4u::Actor::createActor("worker", fafard, worker, boivin, jacquelin);
-
-  simgrid::s4u::this_actor::sleep_for(5);
-
-  XBT_INFO("After 5 seconds, move the process to %s", jacquelin->getCname());
-  actor->migrate(jacquelin);
-
-  simgrid::s4u::this_actor::sleep_until(15);
-  XBT_INFO("At t=15, move the process to %s and resume it.", fafard->getCname());
-  actor->migrate(fafard);
-  actor->resume();
-}
-
-int main(int argc, char* argv[])
-{
-  simgrid::s4u::Engine e(&argc, argv);
-  xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]);
-  e.loadPlatform(argv[1]);
-
-  simgrid::s4u::Actor::createActor("monitor", simgrid::s4u::Host::by_name("Boivin"), monitor);
-  e.run();
-
-  return 0;
-}