Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright comments
authorSamuel Lepetit <samuel.lepetit@inria.fr>
Thu, 5 Jul 2012 08:47:33 +0000 (10:47 +0200)
committerSamuel Lepetit <samuel.lepetit@inria.fr>
Thu, 5 Jul 2012 08:47:33 +0000 (10:47 +0200)
68 files changed:
examples/async/AsyncTest.java
examples/async/FinalizeTask.java
examples/async/Forwarder.java
examples/async/Master.java
examples/bittorrent/Bittorrent.java
examples/bittorrent/Common.java
examples/bittorrent/Connection.java
examples/bittorrent/MessageTask.java
examples/bittorrent/Peer.java
examples/bittorrent/Tracker.java
examples/bittorrent/TrackerTask.java
examples/chord/Chord.java
examples/chord/ChordTask.java
examples/chord/Common.java
examples/chord/FindSuccessorAnswerTask.java
examples/chord/FindSuccessorTask.java
examples/chord/GetPredecessorAnswerTask.java
examples/chord/GetPredecessorTask.java
examples/chord/Node.java
examples/chord/NotifyTask.java
examples/commTime/CommTimeTest.java
examples/commTime/FinalizeTask.java
examples/commTime/Master.java
examples/commTime/Slave.java
examples/kademlia/Bucket.java
examples/kademlia/Common.java
examples/kademlia/Contact.java
examples/kademlia/FindNodeAnswerTask.java
examples/kademlia/FindNodeTask.java
examples/kademlia/Kademlia.java
examples/kademlia/KademliaTask.java
examples/kademlia/Node.java
examples/kademlia/PingAnswerTask.java
examples/kademlia/PingTask.java
examples/kademlia/RoutingTable.java
examples/master_slave_bypass/FinalizeTask.java
examples/master_slave_bypass/Master.java
examples/master_slave_bypass/MsBypass.java
examples/master_slave_bypass/Slave.java
examples/master_slave_kill/FinalizeTask.java
examples/master_slave_kill/Master.java
examples/master_slave_kill/MsKill.java
examples/master_slave_kill/Slave.java
examples/masterslave/FinalizeTask.java
examples/masterslave/Forwarder.java
examples/masterslave/Master.java
examples/masterslave/Masterslave.java
examples/masterslave/Slave.java
examples/migration/Migration.java
examples/mutualExclusion/centralized/Coordinator.java
examples/mutualExclusion/centralized/GrantTask.java
examples/mutualExclusion/centralized/MutexCentral.java
examples/mutualExclusion/centralized/Node.java
examples/mutualExclusion/centralized/ReleaseTask.java
examples/mutualExclusion/centralized/RequestTask.java
examples/pingPong/PingPongTask.java
examples/pingPong/PingPongTest.java
examples/pingPong/Receiver.java
examples/pingPong/Sender.java
examples/priority/Priority.java
examples/startKillTime/Master.java
examples/startKillTime/Slave.java
examples/startKillTime/StartKillTime.java
examples/suspend/DreamMaster.java
examples/suspend/LazyGuy.java
examples/suspend/Suspend.java
examples/tracing/PingPongTask.java
examples/tracing/Sender.java

index f8abd33..c3a35dc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index c93dc7f..359c804 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 29e9d18..6e62497 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 19e840c..5f270cb 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Master of a basic master/slave example in Java
  *
- * Copyright 2006,2007,2010 The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012 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. 
index 5288ca9..0d946f3 100644 (file)
@@ -1,3 +1,11 @@
+/**
+* Copyright 2012 The SimGrid team. All right 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.
+*
+*/
 package bittorrent;
 
 import org.simgrid.msg.Msg;
index e69d3c8..3817db9 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package bittorrent;
 /**
  * Common constants for use in the simulation
index 87ecacc..f0a3339 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package bittorrent;
 
 import java.util.Arrays;
index dd02eeb..2ea0751 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package bittorrent;
 
 import org.simgrid.msg.Task;
index 684d501..47b300f 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package bittorrent;
 
 import java.util.ArrayList;
index 35778b1..d41bafd 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package bittorrent;
 import java.util.ArrayList;
 import java.util.Iterator;
index 41cac26..9c0552d 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package bittorrent;
 import java.util.ArrayList;
 
index 66f8e1b..398058f 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 import org.simgrid.msg.Msg;
index b740fea..9c6c785 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 import org.simgrid.msg.Task;
index d12f10b..0348460 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 /**
  * Common constants used over the simulation
index dea6ce1..64e49cd 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 public class FindSuccessorAnswerTask extends ChordTask {
index 2b068f0..8708469 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 public class FindSuccessorTask extends ChordTask {
index 493bffa..c3d1724 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 public class GetPredecessorAnswerTask extends ChordTask {
index 42dd2e9..f170188 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 public class GetPredecessorTask extends ChordTask {
index b4dff0f..f28383f 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 import org.simgrid.msg.Comm;
index d3e8f2e..670da59 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package chord;
 
 public class NotifyTask extends ChordTask {
index 861b895..afcc18e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010 The SimGrid Team. All right reserved. 
+ * Copyright 2006-2012 The SimGrid Team. All right 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. 
index 108bf48..7819b49 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index ea46963..dda4718 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Master of a basic master/slave example in Java
  *
- * Copyright 2006,2007,2010 The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012 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. 
index 0ada19e..0df92c1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 032799b..04581f3 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index a8ea1a0..739e18b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 61215e7..b4c1063 100644 (file)
@@ -1,3 +1,9 @@
+/* Copyright (c) 2012. 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. */
+
 package kademlia;
 
 /**
index 05d0217..1f56a97 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 9ad0582..39e7941 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 70d0524..c0b8c60 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 5566a3c..a073232 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 437f7af..486b788 100644 (file)
@@ -1,9 +1,9 @@
-package kademlia;
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. 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. */
+package kademlia;
 
 import org.simgrid.msg.Host;
 
index 4c76dff..3f83893 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 24b2ac5..84fcccf 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 2457354..a119aaa 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010. The SimGrid Team.
+/* Copyright (c) 2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 76f56f9..6bbbfbb 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index db764df..e411e1d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Master of a basic master/slave example in Java
  *
- * Copyright 2006,2007,2010 The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012 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. 
index 8bf98ef..035b046 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 3056f1c..a66a80d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 2b08b4e..c2d7bfa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 98c1d04..783e9a1 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Master of a basic master/slave example in Java
  *
- * Copyright 2006,2007,2010 The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012 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. 
index 97aab15..267dedd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 1bc7229..8e85ef1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index c95e455..8c636f1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 0c285ee..4c8f102 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 9d582cf..9d23ba0 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Master of a basic master/slave example in Java
  *
- * Copyright 2006,2007,2010 The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012 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. 
index a2e0f35..128e753 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index e72b76d..f782195 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index bcf17ab..3db138d 100644 (file)
@@ -1,8 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
+ * 2012. 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. 
index abd94ba..ad62a60 100644 (file)
@@ -1,7 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2010. The SimGrid Team. All rights reserved. 
+ * 2012. 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. 
index 361c026..e9bdda0 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * 2012. 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. 
+ */
 package mutualExclusion.centralized;
 import org.simgrid.msg.Task;
 
index 425ac49..0ed4d54 100644 (file)
@@ -1,8 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
+ * 2012. 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. 
index 90ff40f..4dfa77a 100644 (file)
@@ -1,7 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2010. The SimGrid Team. All rights reserved. 
+ * 2012. 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. 
index 05fd642..a33bf24 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * 2012. 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. 
+ */
 package mutualExclusion.centralized;
 public class ReleaseTask extends org.simgrid.msg.Task {
 }
index 7131c67..4615509 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * 2012. 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. 
+ */
 package mutualExclusion.centralized;
 import org.simgrid.msg.Task;
 
index eb6de9a..a61700b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 9e902b1..8a31a93 100644 (file)
@@ -1,8 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 05f50dc..5454ba4 100644 (file)
@@ -1,8 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 0af72d0..f2cf7ab 100644 (file)
@@ -1,7 +1,5 @@
 /*
- * Sender of basic ping/pong example
- *
- * Copyright 2006,2007,2010 The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index e5bcfb7..1b57e43 100644 (file)
@@ -1,8 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
+ * Copyright 2006-2012. 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. 
index b71dd8f..eb04346 100644 (file)
@@ -1,5 +1,5 @@
-/*     
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+/*
+ * Copyright 2006-2012. 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. 
index 2f5c82c..d3f7036 100644 (file)
@@ -1,5 +1,5 @@
-/*     
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+/*
+ * Copyright 2006-2012. 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. 
index 55fb7be..5a16670 100644 (file)
@@ -1,8 +1,9 @@
-/* Copyright (c) 2007, 2009, 2010, 2012. 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. */
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package startKillTime;
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.NativeException;
index f3bb90d..3fbc4b9 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package suspend;
 
 import org.simgrid.msg.Host;
index 0904636..627cc36 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package suspend;
 
 import org.simgrid.msg.Host;
index b628c30..ae106f3 100644 (file)
@@ -1,3 +1,9 @@
+/*
+ * Copyright 2006-2012. 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. 
+ */
 package suspend;
 
 import org.simgrid.msg.Msg;
index 7157a7e..8e2224c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012. 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. 
index 9e0765c..413cde2 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Sender of basic ping/pong example
  *
- * Copyright 2006,2007,2010, 2012 The SimGrid Team. All rights reserved. 
+ * Copyright 2006-2012 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.