Add missing methods in JackDebugClient(2).
[jack2.git] / posix / JackPosixMutex.cpp
blobc5e60aa81473e906598337bdbb24927600189c6d
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 #include "JackPosixMutex.h"
23 #include "JackError.h"
25 namespace Jack
28 bool JackBasePosixMutex::Lock()
30 pthread_t current_thread = pthread_self();
32 if (!pthread_equal(current_thread, fOwner)) {
33 int res = pthread_mutex_lock(&fMutex);
34 if (res == 0) {
35 fOwner = current_thread;
36 return true;
37 } else {
38 jack_error("JackBasePosixMutex::Lock res = %d", res);
39 return false;
41 } else {
42 jack_error("JackBasePosixMutex::Lock mutex already locked by thread = %d", current_thread);
43 return false;
47 bool JackBasePosixMutex::Trylock()
49 pthread_t current_thread = pthread_self();
51 if (!pthread_equal(current_thread, fOwner)) {
52 int res = pthread_mutex_trylock(&fMutex);
53 if (res == 0) {
54 fOwner = current_thread;
55 return true;
56 } else {
57 return false;
59 } else {
60 jack_error("JackBasePosixMutex::Trylock mutex already locked by thread = %d", current_thread);
61 return false;
65 bool JackBasePosixMutex::Unlock()
67 if (pthread_equal(pthread_self(), fOwner)) {
68 fOwner = 0;
69 int res = pthread_mutex_unlock(&fMutex);
70 if (res == 0) {
71 return true;
72 } else {
73 jack_error("JackBasePosixMutex::Unlock res = %d", res);
74 return false;
76 } else {
77 jack_error("JackBasePosixMutex::Unlock mutex not locked by thread = %d owner %d", pthread_self(), fOwner);
78 return false;
82 bool JackPosixMutex::Lock()
84 int res = pthread_mutex_lock(&fMutex);
85 if (res != 0) {
86 jack_log("JackPosixMutex::Lock res = %d", res);
88 return (res == 0);
91 bool JackPosixMutex::Trylock()
93 return (pthread_mutex_trylock(&fMutex) == 0);
96 bool JackPosixMutex::Unlock()
98 int res = pthread_mutex_unlock(&fMutex);
99 if (res != 0) {
100 jack_log("JackPosixMutex::Unlock res = %d", res);
102 return (res == 0);
106 } // namespace