X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1b118858229a08f00b76ab2105779c814f0363d0..c57842fe897f53b46f0be3da87f7c996674be7d6:/examples/scala/master_slave_bypass/Slave.scala?ds=sidebyside diff --git a/examples/scala/master_slave_bypass/Slave.scala b/examples/scala/master_slave_bypass/Slave.scala index d8538c43dd..ab595be30d 100644 --- a/examples/scala/master_slave_bypass/Slave.scala +++ b/examples/scala/master_slave_bypass/Slave.scala @@ -1,8 +1,9 @@ /* - * Copyright 2006-2012. The SimGrid Team. All rights reserved. + * 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. + * under the terms of the license (GNU LGPL) which comes with this package. */ package master_slave_bypass @@ -18,6 +19,6 @@ class Slave(hostname:String, name:String) extends Process(hostname, name) { Msg.info("Slave Hello!") val task = new FinalizeTask() Msg.info("Send finalize!") - task.send("alice") + task.send("Tremblay") } }