Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3db138d2b8b4220cc2664d6345834fd855d342b2
[simgrid.git] / examples / java / migration / Migration.java
1 /*
2  * 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 package migration;
8 import org.simgrid.msg.Msg;
9 import org.simgrid.msg.Mutex;
10 import org.simgrid.msg.NativeException;
11 import org.simgrid.msg.Process;
12 /**
13  * Demonstrates the use of Task.setPriority to change
14  * the computation priority of a task
15  */ 
16 public class Migration  {
17         public static Mutex mutex;
18         public static Process processToMigrate = null;
19         
20    /* This only contains the launcher. If you do nothing more than than you can run 
21     *   java simgrid.msg.Msg
22     * which also contains such a launcher
23     */
24     
25     public static void main(String[] args) throws NativeException {     
26                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
27                 Msg.init(args);
28                 if(args.length < 2) {
29                         Msg.info("Usage   : Priority platform_file deployment_file");
30                 Msg.info("example : Priority ping_pong_platform.xml ping_pong_deployment.xml");
31                 System.exit(1);
32                 }
33                 /* Create the mutex */
34                 mutex = new Mutex();            
35                 
36                 /* construct the platform and deploy the application */
37                 Msg.createEnvironment(args[0]);
38                 Msg.deployApplication(args[1]);
39                 
40                 /*  execute the simulation. */
41             Msg.run();
42     }
43 }