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
25 #include "bcsignals.h"
29 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);
96 // Remove from recursive status
99 pthread_mutex_lock(&recursive_lock);
104 pthread_mutex_unlock(&recursive_lock);
110 pthread_mutex_unlock(&recursive_lock);
118 if(pthread_mutex_unlock(&mutex)) perror("Mutex::unlock");
122 int Mutex::trylock(const char *location)
124 if( count ) return EBUSY;
125 int ret = pthread_mutex_trylock(&mutex);
126 if( ret ) return ret;
128 // Update recursive status for the first lock
130 pthread_mutex_lock(&recursive_lock);
132 thread_id = pthread_self();
134 pthread_mutex_unlock(&recursive_lock);
139 SET_LOCK(this, title, location);
144 int Mutex::is_locked()
151 pthread_mutex_destroy(&mutex);
152 pthread_mutexattr_t attr;
153 pthread_mutexattr_init(&attr);
154 pthread_mutex_init(&mutex, &attr);
155 UNSET_ALL_LOCKS(this)