Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a few more cosmetics
[simgrid.git] / teshsuite / java / semaphore / SemaphoreGC.java
index ec1b6aa..d740251 100644 (file)
 package semaphore;
 
 import org.simgrid.msg.*;
-import org.simgrid.msg.Process;
-import org.simgrid.trace.Trace;
-
-import java.util.ArrayList;
-import java.util.List;
-import java.util.Random;
 
 class SemCreator extends Process {
-       Semaphore sem; 
-
-       SemCreator(Host h, String n){
-               super(h, n);
-       }
-
-       public void main(String[] args) throws MsgException{
-               int j; 
-               Msg.info("Creating 50 new Semaphores, yielding and triggering a GC after each");
-               for(j = 1; j <= 50; j++) {
-                       sem = new Semaphore(0);
-                       waitFor(10); 
-                       System.gc();
-               }
-               Msg.info("It worked, we survived. The test is passed.");
-       }
+  Semaphore sem; 
+
+  SemCreator(Host h, String n){
+    super(h, n);
+  }
+
+  public void main(String[] args) throws MsgException{
+    int j; 
+    Msg.info("Creating 50 new Semaphores, yielding and triggering a GC after each");
+    for(j = 1; j <= 50; j++) {
+      sem = new Semaphore(0);
+      waitFor(10); 
+      System.gc();
+    }
+    Msg.info("It worked, we survived. The test is passed.");
+  }
 }
 
-
 public class SemaphoreGC {
-       public static void main(String[] args) throws Exception {
-
-               Msg.init(args);
-               if (args.length < 1) {
-                       Msg.info("Usage: java -cp simgrid.jar:. semaphore.SemaphoreGC <deployment.xml>");
-                       System.exit(1);                 
-               }
-               Msg.createEnvironment(args[0]);
-
-               Host[] hosts = Host.all();
-               new SemCreator(hosts[0], "SemCreator").start();
-
-               Msg.run();
-       }
-
+  public static void main(String[] args) throws Exception {
+    Msg.init(args);
+    if (args.length < 1) {
+      Msg.info("Usage: java -cp simgrid.jar:. semaphore.SemaphoreGC <deployment.xml>");
+      System.exit(1);
+    }
+    Msg.createEnvironment(args[0]);
+
+    Host[] hosts = Host.all();
+    new SemCreator(hosts[0], "SemCreator").start();
+
+    Msg.run();
+  }
 }