Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'mc'
[simgrid.git] / examples / scala / master_slave_bypass / Slave.scala
index d8538c4..ab595be 100644 (file)
@@ -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")
   }
 }