X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e0188e2a2598ce57a4d21a3d7eb5f303aecaf0dd..70f837ba5e17520c7484ec354f8e1d3b4e2632f7:/examples/java/startKillTime/Slave.java diff --git a/examples/java/startKillTime/Slave.java b/examples/java/startKillTime/Slave.java index d3f7036c03..0018b6e446 100644 --- a/examples/java/startKillTime/Slave.java +++ b/examples/java/startKillTime/Slave.java @@ -1,17 +1,17 @@ -/* - * 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 startKillTime; import org.simgrid.msg.Host; import org.simgrid.msg.HostFailureException; -import org.simgrid.msg.HostNotFoundException; -import org.simgrid.msg.TransferFailureException; -import org.simgrid.msg.TimeoutException; import org.simgrid.msg.Msg; +import org.simgrid.msg.MsgException; import org.simgrid.msg.Process; +import org.simgrid.msg.TimeoutException; +import org.simgrid.msg.TransferFailureException; /** * Lazy Guy Slave, suspends itself ASAP @@ -22,8 +22,12 @@ public class Slave extends Process { } public void main(String[] args) throws TransferFailureException, HostFailureException, TimeoutException { Msg.info("Hello!"); - waitFor(10.0); - Msg.info("OK, goodbye now."); + try { + waitFor(10.0); + Msg.info("OK, goodbye now."); + } catch (MsgException e) { + Msg.debug("Wait cancelled."); + } } }