X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e28a9a1f0dfaa7161fa5b5e65c4515afdd88b3b1..b8df87e176f27b25534f27d7e240defa32ca35bc:/examples/java/app/centralizedmutex/Node.java diff --git a/examples/java/app/centralizedmutex/Node.java b/examples/java/app/centralizedmutex/Node.java index 511a95d96a..209cf2c8cb 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-2019. 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,14 +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()); - GrantTask grant= new GrantTask();; Msg.info("Send a request to the coordinator"); req.send("coordinator"); Msg.info("Wait for a grant from the coordinator"); - grant.receive(getName()); - 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");