X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bdfe4f8674f98efbf2d67ad854ef83a1d5f855ed..da3a12f2c982a04f13b52db5b7d60ac637e71acc:/examples/java/master_slave_bypass/Master.java?ds=sidebyside diff --git a/examples/java/master_slave_bypass/Master.java b/examples/java/master_slave_bypass/Master.java index ea894d8890..eadc1e9b13 100644 --- a/examples/java/master_slave_bypass/Master.java +++ b/examples/java/master_slave_bypass/Master.java @@ -1,12 +1,10 @@ -/* - * Master of a basic master/slave example in Java - * - * Copyright (c) 2006-2013. 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. - */ +/* Master of a basic master/slave example in Java */ + +/* Copyright (c) 2006-2014. 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. */ package master_slave_bypass; import org.simgrid.msg.HostNotFoundException; @@ -23,23 +21,23 @@ public class Master extends Process { } public void main(String[] args) throws MsgException { Msg.info("Master Hello!"); - + //Create a slave on host "alice" try { - Msg.info("Create process on host 'alice'"); - new Slave("alice","process2").start(); + Msg.info("Create process on host 'Jacquelin'"); + new Slave("Jacquelin","process2").start(); } catch (MsgException e){ System.out.println("Process2!"); } - + //Wait for slave "alice" while(true) - { - Task task = Task.receive("alice"); + { + Task task = Task.receive("Jacquelin"); if (task instanceof FinalizeTask) { Msg.info("Received Finalize. I'm done. See you!"); - break; + break; } } }