X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9104957deccc59e0e804215d5db498fabfd40d29..ea74f5d95928a521a588737e81f1de94eef25d19:/examples/deprecated/java/trace/pingpong/Sender.java diff --git a/examples/deprecated/java/trace/pingpong/Sender.java b/examples/deprecated/java/trace/pingpong/Sender.java index 21d82dcdff..cf871a510b 100644 --- a/examples/deprecated/java/trace/pingpong/Sender.java +++ b/examples/deprecated/java/trace/pingpong/Sender.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2020. The SimGrid Team. +/* Copyright (c) 2006-2022. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -23,12 +23,12 @@ public class Sender extends Process { } public void main(String[] args) throws MsgException { - Msg.info("hello !"); + Msg.info("hello !"); Trace.hostPushState (getHost().getName(), PM_STATE, "sendingPing"); int hostCount = args.length; Msg.info("host count: " + hostCount); - String[] mailboxes = new String[hostCount]; + String[] mailboxes = new String[hostCount]; double time; double computeDuration = 0; PingPongTask ping; @@ -37,8 +37,8 @@ public class Sender extends Process { mailboxes[pos] = Host.getByName(args[pos]).getName(); } - for (int pos = 0; pos < hostCount; pos++) { - time = Msg.getClock(); + for (int pos = 0; pos < hostCount; pos++) { + time = Msg.getClock(); Msg.info("sender time: " + time); ping = new PingPongTask("no name",computeDuration,COMM_SIZE_LAT); ping.setTime(time); @@ -59,11 +59,11 @@ public class Sender extends Process { Msg.info(" --- bw "+ COMM_SIZE_BW/communicationTime + " ----"); - /* Pop the last state (going back to sending ping) */ + /* Pop the last state (going back to sending ping) */ Trace.hostPopState (getHost().getName(), PM_STATE); } - /* Pop the sendingPong state */ + /* Pop the sendingPong state */ Trace.hostPopState (getHost().getName(), PM_STATE); Msg.info("goodbye!"); }