X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d3211378eccd7c447018608098e0cd2d58adace1..b2abd5a296f9c6fd94318f87cd17c3060bec30d0:/examples/scala/master_slave_kill/Master.scala diff --git a/examples/scala/master_slave_kill/Master.scala b/examples/scala/master_slave_kill/Master.scala index 85a2946952..06859876cf 100644 --- a/examples/scala/master_slave_kill/Master.scala +++ b/examples/scala/master_slave_kill/Master.scala @@ -5,7 +5,7 @@ * 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. + * under the terms of the license (GNU LGPL) which comes with this package. */ package master_slave_kill @@ -21,21 +21,21 @@ class Master(hostname:String, name:String) extends Process(hostname, name) { def main(args:Array[String]) { Msg.info("Master Hello!") var process2:Slave = null - + //Create a slave on host "alice" try { Msg.info("Create process on host 'alice'") - process2 = new Slave("alice","slave") + process2 = new Slave("Tremblay","slave") process2.start() } catch { case e:MsgException => println("Process2!") } - + //Wait for slave "alice" continually({Task.receive("mail1")}) .takeWhile(!_.isInstanceOf[FinalizeTask]) .force // to force the list to be compute - + Msg.info("Received mail1!") process2.kill() Msg.info("Process2 is now killed, should exit now")