Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Bugfix in Mutex comments
authorSamuel Lepetit <samuel.lepetit@inria.fr>
Tue, 12 Jun 2012 09:00:50 +0000 (11:00 +0200)
committerSamuel Lepetit <samuel.lepetit@inria.fr>
Tue, 12 Jun 2012 09:00:50 +0000 (11:00 +0200)
org/simgrid/msg/Mutex.java

index b88e4d2..0930552 100644 (file)
@@ -1,8 +1,4 @@
-package org.simgrid.msg;
-/** A mutex  implemented on top of SimGrid synchronization mechanisms. 
- * You can use it exactly the same way that you use the mutexes, 
- * but to handle the interactions between the threads within the simulation.   
- * 
+/* 
  * Copyright 2012 The SimGrid team. All right reserved. 
  *
  * This program is free software; you can redistribute 
@@ -10,6 +6,12 @@ package org.simgrid.msg;
  * (GNU LGPL) which comes with this package.
  *
  */
+package org.simgrid.msg;
+/** A mutex  implemented on top of SimGrid synchronization mechanisms. 
+ * You can use it exactly the same way that you use the mutexes, 
+ * but to handle the interactions between the processes within the simulation.   
+ *
+ */
 public class Mutex {
        private long bind; // The C object -- don't touch it