Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the way the threads are stopped, not killing the JVM at the end of the simulation.
[simgrid.git] / examples / pingPong / PingPongTest.java
index 4103286..9e902b1 100644 (file)
@@ -18,23 +18,20 @@ public class PingPongTest  {
     * 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   : PingPong platform_file deployment_file");
-               Msg.info("example : PingPong ping_pong_platform.xml ping_pong_deployment.xml");
-               System.exit(1);
-       }
+    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   : PingPong platform_file deployment_file");
+               Msg.info("example : PingPong ping_pong_platform.xml ping_pong_deployment.xml");
+               System.exit(1);
+               }
        
-       /* construct the platform and deploy the application */
-       Msg.createEnvironment(args[0]);
-       Msg.deployApplication(args[1]);
+               /* construct the platform and deploy the application */
+               Msg.createEnvironment(args[0]);
+               Msg.deployApplication(args[1]);
                
-       /*  execute the simulation. */
-        Msg.run();
+               /*  execute the simulation. */
+           Msg.run();
     }
 }