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 / Receiver.java
index 4d44ea3..a0cb0ff 100644 (file)
@@ -15,8 +15,8 @@ import org.simgrid.msg.Task;
 import org.simgrid.msg.Process;
 
 public class Receiver extends Process {
-       public Receiver(Host host, String name, String[]args) {
-               super(host,name,args);
+       public Receiver(Host host, String name, String[]args, double startTime, double killTime) {
+               super(host,name,args,startTime,killTime);
        }
    final double commSizeLat = 1;
    final double commSizeBw = 100000000;