Logo AND Algorithmique Numérique Distribuée

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