]> SALOME platform Git repositories - modules/yacs.git/blob - src/bases/MutexPT.cxx
Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / bases / MutexPT.cxx
1 //  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #include "MutexPT.hxx"
20
21 using namespace YACS::BASES;
22
23 MutexPT::MutexPT()
24 {
25   //pthread_mutexattr_settype(&_options, PTHREAD_MUTEX_FAST_NP);
26   //pthread_mutex_init(&_mutexDesc, &_options);
27   pthread_mutex_init(&_mutexDesc, NULL); // potential hang up at start with commented init
28 }
29
30 MutexPT::~MutexPT()
31 {
32   pthread_mutex_destroy(&_mutexDesc);
33 }
34
35 void MutexPT::lock()
36 {
37   pthread_mutex_lock(&_mutexDesc);
38 }
39
40 void MutexPT::unlock()
41 {
42   pthread_mutex_unlock(&_mutexDesc);
43 }
44
45 ConditionPT::ConditionPT()
46 {
47   pthread_cond_init(&_cond,  NULL);
48 }
49
50 ConditionPT::~ConditionPT()
51 {
52   pthread_cond_destroy(&_cond);
53 }
54
55 void ConditionPT::notify_one()
56 {
57   pthread_cond_signal(&_cond);
58 }
59
60 void ConditionPT::notify_all()
61 {
62   pthread_cond_broadcast(&_cond);
63 }
64
65 void ConditionPT::wait(MutexPT& mutex)
66 {
67   pthread_cond_wait(&_cond, &mutex._mutexDesc);
68 }
69