Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
spell out -classpath with all letters as it seems to break on kfreebsd when written...
[simgrid.git] / examples / scala / master_slave_kill / MsKill.scala
1 /*
2  * Copyright (c) 2006-2013. The SimGrid Team.
3  * All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. 
7  */
8
9 package master_slave_kill;
10
11 import org.simgrid.msg.Msg;
12 import org.simgrid.msg.MsgException;
13 import org.simgrid.msg.NativeException;
14
15 object MsKill extends App{
16    
17   /* This only contains the launcher. If you do nothing more than than you can run 
18   *   scala simgrid.msg.Msg
19   * which also contains such a launcher
20   */
21    
22        
23   /* initialize the MSG simulation. Must be done before anything else (even logging). */
24   Msg.init(args)
25   Msg.createEnvironment(args(0))
26
27   /* bypass deploymemt */
28   try {
29     val process1 = new Master("bob","master")
30     process1.start()
31   }
32   catch {
33     case e:MsgException => println("Create processes failed!")
34   }
35     
36   /*  execute the simulation. */
37   Msg.run()   
38 }