Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright comments
authorSamuel Lepetit <samuel.lepetit@inria.fr>
Thu, 5 Jul 2012 08:27:39 +0000 (10:27 +0200)
committerSamuel Lepetit <samuel.lepetit@inria.fr>
Thu, 5 Jul 2012 08:27:39 +0000 (10:27 +0200)
27 files changed:
org/simgrid/msg/Host.java
org/simgrid/msg/HostFailureException.java
org/simgrid/msg/HostNotFoundException.java
org/simgrid/msg/JniException.java
org/simgrid/msg/Msg.java
org/simgrid/msg/MsgException.java
org/simgrid/msg/NativeException.java
org/simgrid/msg/Process.java
org/simgrid/msg/ProcessKilledError.java
org/simgrid/msg/ProcessNotFoundException.java
org/simgrid/msg/RngStream.java
org/simgrid/msg/Task.java
org/simgrid/msg/TransferFailureException.java
org/simgrid/msg/VM.java
org/simgrid/trace/Trace.java
src/jmsg.c
src/jmsg.h
src/jmsg_host.c
src/jmsg_host.h
src/jmsg_process.c
src/jmsg_process.h
src/jmsg_rngstream.c
src/jmsg_rngstream.h
src/jmsg_synchro.h
src/jmsg_task.h
src/jxbt_utilities.c
src/jxbt_utilities.h

index 28d97cf..0adb866 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Bindings to the MSG hosts
  *
- * Copyright 2006,2007,2010 The SimGrid Team           
+ * Copyright 2006-2012 The SimGrid Team           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index fb9bcf3..87e0661 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This exception is raised when looking for a non-existing host.
  *
- * Copyright 2006,2007,2010 The SimGrid Team           
+ * Copyright 2006-2012 The SimGrid Team           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index 524e0a8..269eeb5 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This exception is raised when looking for a non-existing host.
  *
- * Copyright 2006,2007,2010 The SimGrid Team           
+ * Copyright 2006-2012 The SimGrid Team           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index ede0d59..9edada6 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This exception is raised when there is a problem within the bindings (in JNI). 
  *
- * Copyright 2006,2007,2010 The SimGrid Team            
+ * Copyright 2006-2012 The SimGrid Team            
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index 63a5a45..adb58c5 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * JNI interface to C code for MSG.
  * 
- * Copyright 2006,2007,2010,2011 The SimGrid Team.           
+ * Copyright 2006-2012 The SimGrid Team.           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index 51ebae9..b41bd30 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This exception is an abstract class grouping all MSG-related exceptions
  *
- * Copyright 2006,2007,2010 The SimGrid Team           
+ * Copyright 2006-2012 The SimGrid Team           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index eaec2fa..bdbdc5a 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This exception is raised when there is an error within the C world of SimGrid.
  *
- * Copyright 2006,2007,2010 The SimGrid team
+ * Copyright 2006-2012 The SimGrid team
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index 3a658a2..5acd784 100644 (file)
@@ -1,12 +1,10 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier           
+ * 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. 
+ * (GNU LGPL) which comes with this package.
  */
 
 package org.simgrid.msg;
index 56dcb87..5f7e327 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * 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.
+ */
 package org.simgrid.msg;
 
 /** This error class is only used to interrupt the java user code 
index f4b313d..284335c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This exception is raised when looking for a non-existing process.
  *
- * Copyright 2006,2007,2010 The SimGrid Team           
+ * Copyright 2006-2012 The SimGrid Team           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index 8ab1ac2..c9f5471 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * JNI interface to C RngStream code
  * 
- * Copyright 2006,2007,2010,2012 The SimGrid Team.           
+ * Copyright 2006-2012 The SimGrid Team.           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index d0b5d03..84eaf88 100644 (file)
@@ -1,12 +1,10 @@
 /*
- * simgrid.msg.Task.java       1.00 07/05/01
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier           
+ * 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. 
+ * (GNU LGPL) which comes with this package.
  */
 
 package org.simgrid.msg;
index 6068761..419bf14 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This exception is raised when looking for a non-existing host.
  *
- * Copyright 2006,2007,2010 The SimGrid Team           
+ * Copyright 2006-2012 The SimGrid Team           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index cdbcdd4..04676af 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * JNI interface to Cloud interface in Simgrid
  * 
- * Copyright 2006,2007,2010,2012 The SimGrid Team.           
+ * Copyright 2006-2012 The SimGrid Team.           
  * All right reserved. 
  *
  * This program is free software; you can redistribute 
index 57ea5a2..daeed7d 100644 (file)
@@ -1,15 +1,14 @@
-package org.simgrid.trace;
-
 /*
  * JNI interface to C code for the TRACES part of SimGrid.
  * 
- * Copyright 2006,2007,2010,2011, 2012 The SimGrid Team.           
+ * 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 org.simgrid.trace;
 
 public final class Trace {
        /* Statically load the library which contains all native functions used in here */
index 6010fb5..09bdd55 100644 (file)
@@ -1,6 +1,6 @@
 /* Java Wrappers to the MSG API.                                            */
 
-/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 45e734d..e614876 100644 (file)
@@ -1,6 +1,6 @@
 /* Java Wrappers to the MSG API.                                            */
 
-/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index a48364d..c776b2b 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the java host instances.                            */
 
-/* Copyright (c) 2007, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 8a236a4..0ac429b 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the java host instances.                            */
 
-/* Copyright (c) 2007, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index f05d8be..325bbc1 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the java process instances.                         */
 
-/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index d4351e5..85a0bb0 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the java process instances.                         */
 
-/* Copyright (c) 2007, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 5492982..a51c4cc 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the RngStream Java port                         */
 
-/* Copyright (c) 2007, 2009, 2010, 2012. The SimGrid Team.
+/* Copyright (c) 2007-2012 The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index b8976bb..eb5e37e 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the RngStream Java port                         */
 
-/* Copyright (c) 2007, 2009, 2010, 2012. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index 46aefc8..5c3e41f 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the java process instances.                         */
 
-/* Copyright (c) 2007, 2009, 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 56a96fb..b0dfbbe 100644 (file)
@@ -1,6 +1,6 @@
 /* Functions related to the java task instances.                            */
 
-/* Copyright (c) 2007, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index fb31732..1daf370 100644 (file)
@@ -1,6 +1,6 @@
 /* Various JNI helper functions                                             */
 
-/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
index c395041..4752c7c 100644 (file)
@@ -1,6 +1,6 @@
 /* Various JNI helper functions                                             */
 
-/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
+/* Copyright (c) 2007-2012. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it