Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix errors caught by java -Xcheck:jni.
[simgrid.git] / examples / java / masterslave / Masterslave.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 masterslave;
9
10 import org.simgrid.msg.Msg;
11 import org.simgrid.msg.NativeException;
12
13 public class Masterslave {
14    public static final int TASK_COMP_SIZE = 10000000;
15    public static final int TASK_COMM_SIZE = 10000000;
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             /* initialize the MSG simulation. Must be done before anything else (even logging). */
23             Msg.init(args);
24         
25             if (args.length < 2) {              
26                         Msg.info("Usage   : Masterslave platform_file deployment_file");
27                         Msg.info("example : Masterslave basic_platform.xml basic_deployment.xml");
28                         System.exit(1); 
29                 }
30                 /* construct the platform and deploy the application */
31                 Msg.createEnvironment(args[0]);
32                 Msg.deployApplication(args[1]);
33                 /*  execute the simulation. */
34         Msg.run();
35     }
36 }