X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4e78565ea6b354a0e6250a87b483f909665a0ac3..9dbeb2372ad9a123d0558132ebb6e003e10aa641:/examples/java/master_slave_kill/Slave.java?ds=sidebyside diff --git a/examples/java/master_slave_kill/Slave.java b/examples/java/master_slave_kill/Slave.java index e52dd93733..cd731e6cf6 100644 --- a/examples/java/master_slave_kill/Slave.java +++ b/examples/java/master_slave_kill/Slave.java @@ -1,9 +1,9 @@ -/* - * 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_kill; import org.simgrid.msg.HostFailureException; import org.simgrid.msg.HostNotFoundException; @@ -12,6 +12,7 @@ import org.simgrid.msg.MsgException; import org.simgrid.msg.Task; import org.simgrid.msg.TimeoutException; import org.simgrid.msg.TransferFailureException; +import org.simgrid.msg.NativeException; import org.simgrid.msg.Process; import master_slave_kill.FinalizeTask; @@ -20,16 +21,15 @@ 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 Mail1!"); task.send("mail1"); - Task task2; try { - task2 = Task.receive("mail2"); + Task.receive("mail2"); } catch (MsgException e) { Msg.debug("Received failed"); return;