X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45c3f1cfee86fb48c96d53f8267f99b6db6e3d7a..1bdbe2db10271b1d1948e1ee0382abcfe622a991:/examples/java/migration/Migration.java diff --git a/examples/java/migration/Migration.java b/examples/java/migration/Migration.java index 97aa53bf21..37509a07f7 100644 --- a/examples/java/migration/Migration.java +++ b/examples/java/migration/Migration.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2014. The SimGrid Team. +/* Copyright (c) 2012-2014, 2016. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,37 +7,28 @@ package migration; import org.simgrid.msg.Msg; import org.simgrid.msg.Mutex; -import org.simgrid.msg.NativeException; import org.simgrid.msg.Process; -/** - * Demonstrates the use of Task.setPriority to change - * the computation priority of a task - */ -public class Migration { - public static Mutex mutex; - public static Process processToMigrate = null; - - /* This only contains the launcher. If you do nothing more than than you can run - * java simgrid.msg.Msg - * which also contains such a launcher - */ - - public static void main(String[] args) throws NativeException { - /* initialize the MSG simulation. Must be done before anything else (even logging). */ - Msg.init(args); - if(args.length < 2) { - Msg.info("Usage : Priority platform_file deployment_file"); - Msg.info("example : Priority ping_pong_platform.xml ping_pong_deployment.xml"); - System.exit(1); - } - /* Create the mutex */ - mutex = new Mutex(); - - /* construct the platform and deploy the application */ - Msg.createEnvironment(args[0]); - Msg.deployApplication(args[1]); - - /* execute the simulation. */ - Msg.run(); +import org.simgrid.msg.NativeException; + +public class Migration { + public static Mutex mutex; + public static Process processToMigrate = null; + + public static void main(String[] args) throws NativeException { + Msg.init(args); + if(args.length < 2) { + Msg.info("Usage : Migration platform_file deployment_file"); + Msg.info("example : Migration ../platforms/platform.xml migrationDeployment.xml"); + System.exit(1); } + /* Create the mutex */ + mutex = new Mutex(); + + /* construct the platform and deploy the application */ + Msg.createEnvironment(args[0]); + Msg.deployApplication(args[1]); + + /* execute the simulation. */ + Msg.run(); + } }