Merge branch 'master' into develop
[jack2.git] / common / JackMutex.h
blob20f82fd8dc23e2200059f881b490036cca758f59
1 /*
2 Copyright (C) 2006 Grame
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 Grame Research Laboratory, 9 rue du Garet, 69001 Lyon - France
19 grame@grame.fr
22 #ifndef __JackMutex__
23 #define __JackMutex__
25 #include <assert.h>
26 #include "JackError.h"
27 #include "JackPlatformPlug.h"
30 namespace Jack
32 /*!
33 \brief Base class for "lockable" objects.
36 class JackLockAble
39 protected:
41 JackMutex fMutex;
43 JackLockAble(const char* name = NULL)
44 :fMutex(name)
46 ~JackLockAble()
49 public:
51 bool Lock()
53 return fMutex.Lock();
56 bool Trylock()
58 return fMutex.Trylock();
61 bool Unlock()
63 return fMutex.Unlock();
68 class JackLock
70 private:
72 JackLockAble* fObj;
74 public:
76 JackLock(JackLockAble* obj): fObj(obj)
78 fObj->Lock();
81 JackLock(const JackLockAble* obj): fObj((JackLockAble*)obj)
83 fObj->Lock();
86 ~JackLock()
88 fObj->Unlock();
93 } // namespace
95 #endif