4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "bcsignals.h"
30 Mutex::Mutex(const char *title, int recursive)
33 pthread_mutexattr_t attr;
34 pthread_mutexattr_init(&attr);
35 pthread_mutex_init(&mutex, &attr);
36 pthread_mutex_init(&recursive_lock, &attr);
38 this->recursive = recursive;
45 pthread_mutex_destroy(&mutex);
46 pthread_mutex_destroy(&recursive_lock);
47 UNSET_ALL_LOCKS(this);
50 int Mutex::lock(const char *location)
52 // Test recursive owner and give up if we already own it
55 pthread_mutex_lock(&recursive_lock);
56 if(thread_id_valid && pthread_self() == thread_id)
59 pthread_mutex_unlock(&recursive_lock);
62 pthread_mutex_unlock(&recursive_lock);
66 SET_LOCK(this, title, location);
67 if(pthread_mutex_lock(&mutex)) perror("Mutex::lock");
71 // Update recursive status for the first lock
74 pthread_mutex_lock(&recursive_lock);
76 thread_id = pthread_self();
78 pthread_mutex_unlock(&recursive_lock);
93 printf("Mutex::unlock not locked: %s\n", title);
97 // Remove from recursive status
100 pthread_mutex_lock(&recursive_lock);
105 pthread_mutex_unlock(&recursive_lock);
111 pthread_mutex_unlock(&recursive_lock);
120 int ret = pthread_mutex_unlock(&mutex);
121 if( ret ) fprintf(stderr, "Mutex::unlock: %s\n",strerror(ret));
125 int Mutex::trylock(const char *location)
127 if( count ) return EBUSY;
128 int ret = pthread_mutex_trylock(&mutex);
129 if( ret ) return ret;
132 // Update recursive status for the first lock
134 pthread_mutex_lock(&recursive_lock);
136 thread_id = pthread_self();
138 pthread_mutex_unlock(&recursive_lock);
143 SET_LOCK(this, title, location);
148 int Mutex::is_locked()
155 pthread_mutex_destroy(&mutex);
156 pthread_mutexattr_t attr;
157 pthread_mutexattr_init(&attr);
158 pthread_mutex_init(&mutex, &attr);
159 UNSET_ALL_LOCKS(this)