Logo AND Algorithmique Numérique Distribuée

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