X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a8386a00238d13b282abb5884ee51d0cb30e0361..cbe8c21df78eb20ffd36c0bac250685f490244c5:/examples/io/Node.java diff --git a/examples/io/Node.java b/examples/io/Node.java index 5afc600bcc..a0e1f9547b 100644 --- a/examples/io/Node.java +++ b/examples/io/Node.java @@ -47,13 +47,13 @@ public class Node extends Process { Msg.info("Open file " + filename); File file = new File(mount,filename, "rw"); - long read = file.read(mount,10000000,1); + long read = file.read(10000000,1); Msg.info("Having read " + read + " on " + filename); - long write = file.read(mount,100000,1); + long write = file.read(100000,1); Msg.info("Having write " + write + " on " + filename); - read = file.read(mount,10000000,1); + read = file.read(10000000,1); Msg.info("Having read " + read + " on " + filename); } } \ No newline at end of file