Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a straightforward implementation of start_time and kill_time. This change the...
[simgrid.git] / examples / pingPong / Sender.java
index ff8efdc..7e00cc0 100644 (file)
@@ -14,8 +14,8 @@ import org.simgrid.msg.MsgException;
 import org.simgrid.msg.Process;
 
 public class Sender extends Process {
-       public Sender(Host host, String name, String[]args) {
-               super(host,name,args);
+       public Sender(Host host, String name, String[]args, double startTime, double killTime) {
+               super(host,name,args,startTime,killTime);
        }
     private final double commSizeLat = 1;
     final double commSizeBw = 100000000;