Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge commit '4df273f15273f959fc9e6ed69d2bf5e607ec9bf7' into HEAD
[simgrid.git] / examples / startKillTime / Slave.java
index 2120e90..d3f7036 100644 (file)
@@ -1,5 +1,5 @@
-/*     
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+/*
+ * Copyright 2006-2012. The SimGrid Team. All rights reserved. 
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. 
@@ -17,9 +17,9 @@ import org.simgrid.msg.Process;
  * Lazy Guy Slave, suspends itself ASAP
  */
 public class Slave extends 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 TransferFailureException, HostFailureException, TimeoutException {
                Msg.info("Hello!");
                waitFor(10.0);