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 / commTime / Master.java
index 2080469..cd68e14 100644 (file)
@@ -17,8 +17,8 @@ import org.simgrid.msg.Task;
 import org.simgrid.msg.Process;
 
 public class Master extends Process {
-       public Master(Host host, String name, String[]args) {
-               super(host,name,args);
+       public Master(Host host, String name, String[]args, double startTime, double killTime) {
+               super(host,name,args, startTime, killTime);
        }
        public void main(String[] args) throws MsgException {
       if (args.length < 4) {