X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e0188e2a2598ce57a4d21a3d7eb5f303aecaf0dd..d51a876f765fc68b3e1e667f867b91a1b4987a85:/examples/java/master_slave_bypass/Slave.java diff --git a/examples/java/master_slave_bypass/Slave.java b/examples/java/master_slave_bypass/Slave.java index a66a80d55e..15fef7f9c5 100644 --- a/examples/java/master_slave_bypass/Slave.java +++ b/examples/java/master_slave_bypass/Slave.java @@ -1,15 +1,16 @@ -/* - * Copyright 2006-2012. 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. - */ +/* 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.HostFailureException; import org.simgrid.msg.HostNotFoundException; import org.simgrid.msg.Msg; import org.simgrid.msg.TimeoutException; import org.simgrid.msg.TransferFailureException; +import org.simgrid.msg.NativeException; import org.simgrid.msg.Process; import master_slave_bypass.FinalizeTask; @@ -18,10 +19,10 @@ public class Slave extends Process { public Slave(String hostname, String name) throws HostNotFoundException { super(hostname, name); } - public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException { + public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException, NativeException { Msg.info("Slave Hello!"); FinalizeTask task = new FinalizeTask(); Msg.info("Send finalize!"); - task.send("alice"); + task.send("Jacquelin"); } -} \ No newline at end of file +}