Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Deleted simulatedSleep, use waitFor instead. Moved everything from MsgNative to their...
[simgrid.git] / examples / async / Master.java
index 6c28a36..dd4c313 100644 (file)
@@ -11,6 +11,7 @@ package async;
 import java.util.ArrayList;
 
 import org.simgrid.msg.Comm;
+import org.simgrid.msg.Process;
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.MsgException;
 import org.simgrid.msg.Task;
@@ -30,11 +31,11 @@ public class Master extends Process {
                int slavesCount = Integer.valueOf(args[3]).intValue();
 
                Msg.info("Hello! Got "+  slavesCount + " slaves and "+tasksCount+" tasks to process");
-               
                ArrayList<Comm> comms = new ArrayList<Comm>();
                
                for (int i = 0; i < tasksCount; i++) {
                        Task task = new Task("Task_" + i, taskComputeSize, taskCommunicateSize); 
+                       Process p = task.getSender();
                        Msg.info("Sending \"" + task.getName()+ "\" to \"slave_" + i % slavesCount + "\"");
                        //task.send("slave_"+(i%slavesCount));
                        Comm comm = task.isend("slave_"+(i%slavesCount));
@@ -53,7 +54,7 @@ public class Master extends Process {
                                        e.printStackTrace();
                                }
                        }
-                       simulatedSleep(1);
+                       waitFor(1);
                }
                
                Msg.info("All tasks have been dispatched. Let's tell (asynchronously) everybody the computation is over, and sleep 20s so that nobody gets a message from a terminated process.");
@@ -62,7 +63,7 @@ public class Master extends Process {
                        FinalizeTask task = new FinalizeTask();
                        task.dsend("slave_"+(i%slavesCount));
                }
-               simulatedSleep(20);
+               waitFor(20);
 
                Msg.info("Goodbye now!");
        }