X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a9919f554fd42fdb9a26defe86adbb1c3cfa59bd..a92d7b716f51a53dea7f59db8524d4add713b910:/examples/java/app/centralizedmutex/Node.java diff --git a/examples/java/app/centralizedmutex/Node.java b/examples/java/app/centralizedmutex/Node.java index b8fd1d1f95..a1495a00a3 100644 --- a/examples/java/app/centralizedmutex/Node.java +++ b/examples/java/app/centralizedmutex/Node.java @@ -1,5 +1,4 @@ -/* Copyright (c) 2012-2014, 2016. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2012-2017. 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. */ @@ -16,13 +15,13 @@ public class Node extends Process { public Node(Host host, String name, String[]args) { super(host,name,args); } - public void request(double CStime) throws MsgException { + public void request(double csTime) throws MsgException { RequestTask req = new RequestTask(getName()); 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 - Task compute = new Task("CS", CStime, 0); + GrantTask.receive(getName()); + Task compute = new Task("CS", csTime, 0); compute.execute(); ReleaseTask release = new ReleaseTask(); release.send("coordinator");