From 188f218c529025735df882c3cabfdbae62a0c907 Mon Sep 17 00:00:00 2001 From: Samuel Lepetit Date: Tue, 12 Jun 2012 11:00:50 +0200 Subject: [PATCH 1/1] Bugfix in Mutex comments --- org/simgrid/msg/Mutex.java | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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 -- 2.20.1