Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Xml platform cleaning
[simgrid.git] / examples / java / master_slave_bypass / MsBypass.java
1 /* Copyright (c) 2006-2014. The SimGrid Team.
2  * 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 package master_slave_bypass;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.MsgException;
11 import org.simgrid.msg.NativeException;
12
13 public class MsBypass {
14
15    /* This only contains the launcher. If you do nothing more than than you can run
16     *   java simgrid.msg.Msg
17     * which also contains such a launcher
18     */
19
20     public static void main(String[] args) throws NativeException {
21
22     /* initialize the MSG simulation. Must be done before anything else (even logging). */
23     Msg.init(args);
24     Msg.createEnvironment(args[0]);
25
26     /* bypass deployment */
27     try {
28         new Master("Boivin","process1").start();
29     }
30     catch (MsgException e){
31         System.out.println("Create processes failed!");
32     }
33
34         /*  execute the simulation. */
35     Msg.run();
36     }
37 }