Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'hypervisor' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid...
[simgrid.git] / examples / java / master_slave_kill / MsKill.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_kill;
10
11 import org.simgrid.msg.Msg;
12 import org.simgrid.msg.MsgException;
13 import org.simgrid.msg.NativeException;
14
15 public class MsKill {
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 deploymemt */
29     try {
30             Master process1 = new Master("bob","master");
31             process1.start();
32     }
33     catch (MsgException e){
34         System.out.println("Create processes failed!");
35     }
36     
37         /*  execute the simulation. */
38     Msg.run();
39     }   
40 }