mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix this to create a recursive mutex. Patch by Evan Jones!
llvm-svn: 20355
This commit is contained in:
parent
b632a13aa7
commit
970db20de4
@ -32,11 +32,34 @@ namespace llvm {
|
||||
void operator=(const Mutex &); // DO NOT IMPLEMENT
|
||||
public:
|
||||
Mutex() {
|
||||
// Initialize the mutex as a recursive mutex
|
||||
pthread_mutexattr_t Attr;
|
||||
pthread_mutex_init(&mutex, &Attr);
|
||||
int errorcode = pthread_mutexattr_init(&Attr);
|
||||
assert(errorcode == 0);
|
||||
|
||||
errorcode = pthread_mutexattr_settype(&Attr, PTHREAD_MUTEX_RECURSIVE);
|
||||
assert(errorcode == 0);
|
||||
|
||||
errorcode = pthread_mutex_init(&mutex, &Attr);
|
||||
assert(errorcode == 0);
|
||||
|
||||
errorcode = pthread_mutexattr_destroy(&Attr);
|
||||
assert(errorcode == 0);
|
||||
}
|
||||
|
||||
~Mutex() {
|
||||
int errorcode = pthread_mutex_destroy(&mutex);
|
||||
assert(errorcode == 0);
|
||||
}
|
||||
|
||||
void acquire () {
|
||||
int errorcode = pthread_mutex_lock(&mutex);
|
||||
assert(errorcode == 0);
|
||||
}
|
||||
|
||||
void release () {
|
||||
int errorcode = pthread_mutex_unlock(&mutex);
|
||||
assert(errorcode == 0);
|
||||
}
|
||||
~Mutex() { pthread_mutex_destroy(&mutex); }
|
||||
void acquire () { pthread_mutex_lock (&mutex); }
|
||||
void release () { pthread_mutex_unlock (&mutex); }
|
||||
};
|
||||
} // end namespace llvm
|
||||
|
Loading…
Reference in New Issue
Block a user