X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08e7455d67920bbd7a87f440d00f2c1e071314a0..ea74f5d95928a521a588737e81f1de94eef25d19:/examples/deprecated/java/energy/vm/EnergyVMRunner.java diff --git a/examples/deprecated/java/energy/vm/EnergyVMRunner.java b/examples/deprecated/java/energy/vm/EnergyVMRunner.java index 5debbca6c3..220f1764b0 100644 --- a/examples/deprecated/java/energy/vm/EnergyVMRunner.java +++ b/examples/deprecated/java/energy/vm/EnergyVMRunner.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2016-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2022. 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. */ @@ -19,7 +19,7 @@ public class EnergyVMRunner extends Process { public class DummyProcess extends Process { public DummyProcess (Host host, String name) { - super(host, name); + super(host, name); } @Override @@ -30,8 +30,8 @@ public class EnergyVMRunner extends Process { } catch (HostFailureException | TaskCancelledException e) { Msg.error(e.getMessage()); e.printStackTrace(); - } - Msg.info("This worker is done."); + } + Msg.info("This worker is done."); } } @@ -54,8 +54,8 @@ public class EnergyVMRunner extends Process { vmHost2.start(); Msg.info("Create two tasks on Host1: one inside a VM, the other directly on the host"); - new DummyProcess (vmHost1, "p11").start(); - new DummyProcess (vmHost1, "p12").start(); + new DummyProcess (vmHost1, "p11").start(); + new DummyProcess (vmHost1, "p12").start(); Msg.info("Create two tasks on Host2: both directly on the host"); new DummyProcess (vmHost2, "p21").start(); @@ -66,9 +66,9 @@ public class EnergyVMRunner extends Process { new DummyProcess (host3, "p312").start(); Msg.info("Wait 5 seconds. The tasks are still running (they run for 3 seconds, but 2 tasks are co-located, " - + "so they run for 6 seconds)"); + + "so they run for 6 seconds)"); waitFor(5); - Msg.info("Wait another 5 seconds. The tasks stop at some point in between"); + Msg.info("Wait another 5 seconds. The tasks stop at some point in between"); waitFor(5); vmHost1.destroy();