Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge scm.gforge.inria.fr:/gitroot/simgrid/simgrid-java
[simgrid.git] / examples / priority / Priority.java
1 /*
2  * $Id$
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier         
5  * All rights reserved. 
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. 
9  */
10 package priority;
11 import org.simgrid.msg.Msg;
12 import org.simgrid.msg.NativeException;
13 /**
14  * Demonstrates the use of Task.setPriority to change
15  * the computation priority of a task
16  */ 
17 public class Priority  {
18
19    /* This only contains the launcher. If you do nothing more than than you can run 
20     *   java simgrid.msg.Msg
21     * which also contains such a launcher
22     */
23     
24     public static void main(String[] args) throws NativeException {     
25                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
26                 Msg.init(args);
27                 if(args.length < 2) {
28                         Msg.info("Usage   : Priority platform_file deployment_file");
29                 Msg.info("example : Priority ping_pong_platform.xml ping_pong_deployment.xml");
30                 System.exit(1);
31                 }
32         
33                 /* construct the platform and deploy the application */
34                 Msg.createEnvironment(args[0]);
35                 Msg.deployApplication(args[1]);
36                 
37                 /*  execute the simulation. */
38             Msg.run();
39     }
40 }