Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Removed "ApplicationHandler" and "japplication_handler" and use MSG_launch_applicatio...
[simgrid.git] / examples / commTime / Slave.java
index 52c10a0..0ada19e 100644 (file)
@@ -10,9 +10,9 @@ package commTime;
 import org.simgrid.msg.*;
 
 public class Slave extends org.simgrid.msg.Process {
-       public Slave(Host host, String name, String[]args, double startTime, double killTime) {
-               super(host,name,args, startTime, killTime);
-       }
+       public Slave(Host host, String name, String[]args) {
+               super(host,name,args);
+       } 
        public void main(String[] args) throws MsgException {
       if (args.length < 1) {
         Msg.info("Slave needs 1 argument (its number)");