From: Samuel Lepetit Date: Tue, 12 Jun 2012 09:00:50 +0000 (+0200) Subject: Bugfix in Mutex comments X-Git-Tag: v3_9_90~569^2~19^2~54^2~17 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/188f218c529025735df882c3cabfdbae62a0c907?hp=d9585efbbbfc5e6f8c4ce228f407732fa9209c3c Bugfix in Mutex comments --- diff --git a/org/simgrid/msg/Mutex.java b/org/simgrid/msg/Mutex.java index b88e4d2bb9..093055267d 100644 --- a/org/simgrid/msg/Mutex.java +++ b/org/simgrid/msg/Mutex.java @@ -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