Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://github.com/mpoquet/simgrid
[simgrid.git] / examples / java / process / kill / Main.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 process.kill;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.MsgException;
11 import org.simgrid.msg.NativeException;
12
13 public class Main {
14   private Main() {
15     throw new IllegalAccessError("Utility class");
16   }
17
18   public static void main(String[] args) throws NativeException {
19     /* initialize the MSG simulation. Must be done before anything else (even logging). */
20     Msg.init(args);
21     Msg.createEnvironment(args[0]);
22
23     /* bypass deploymemt */
24     try {
25       Killer killer = new Killer("Jacquelin","killer");
26       killer.start();
27     } catch (MsgException e){
28       System.out.println("Create processes failed!");
29     }
30
31     /*  execute the simulation. */
32     Msg.run();
33   }
34 }