Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the way the objects are created in ApplicationHandler: they are
[simgrid.git] / examples / mutualExclusion / centralized / Coordinator.java
index 74abea2..eae6047 100644 (file)
@@ -17,7 +17,9 @@ import org.simgrid.msg.Process;
 
 
 public class Coordinator extends Process  {
-
+       public Coordinator(String hostname, String name) throws HostNotFoundException {
+               super(hostname, name);
+       }
        LinkedList<RequestTask> waitingQueue=new LinkedList<RequestTask>();
        int CsToServe;