Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Move Java examples to examples/java/.
[simgrid.git] / examples / java / master_slave_kill / MsKill.java
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_kill;
9
10 import org.simgrid.msg.Msg;
11 import org.simgrid.msg.MsgException;
12 import org.simgrid.msg.NativeException;
13
14 public class MsKill {
15    
16    /* This only contains the launcher. If you do nothing more than than you can run 
17     *   java simgrid.msg.Msg
18     * which also contains such a launcher
19     */
20    
21     public static void main(String[] args) throws NativeException {
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             Master process1 = new Master("bob","master");
30             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 }