Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revalidate the tesh file
[simgrid.git] / examples / java / app / centralizedmutex / Node.java
index b8fd1d1..78bfef9 100644 (file)
@@ -21,7 +21,7 @@ public class Node extends Process {
     Msg.info("Send a request to the coordinator");
     req.send("coordinator");
     Msg.info("Wait for a grant from the coordinator");
-    Task.receive(getName()); // FIXME: ensure that this is a grant
+    GrantTask.receive(getName());
     Task compute = new Task("CS", CStime, 0);
     compute.execute();
     ReleaseTask release = new ReleaseTask();