14 #include "llvm/Config/config.h"
22 #if !defined(LLVM_ENABLE_THREADS) || LLVM_ENABLE_THREADS == 0
34 #if defined(HAVE_PTHREAD_H) && defined(HAVE_PTHREAD_MUTEX_LOCK)
48 pthread_mutex_t* mutex =
49 static_cast<pthread_mutex_t*
>(
malloc(
sizeof(pthread_mutex_t)));
50 pthread_mutexattr_t attr;
53 int errorcode = pthread_mutexattr_init(&attr);
54 assert(errorcode == 0); (void)errorcode;
58 int kind = ( recursive ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL );
59 errorcode = pthread_mutexattr_settype(&attr, kind);
60 assert(errorcode == 0);
62 #if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__) && \
63 !defined(__DragonFly__) && !defined(__Bitrig__)
65 errorcode = pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE);
66 assert(errorcode == 0);
70 errorcode = pthread_mutex_init(mutex, &attr);
71 assert(errorcode == 0);
74 errorcode = pthread_mutexattr_destroy(&attr);
75 assert(errorcode == 0);
84 pthread_mutex_t* mutex =
static_cast<pthread_mutex_t*
>(data_);
86 pthread_mutex_destroy(mutex);
93 pthread_mutex_t* mutex =
static_cast<pthread_mutex_t*
>(data_);
96 int errorcode = pthread_mutex_lock(mutex);
97 return errorcode == 0;
103 pthread_mutex_t* mutex =
static_cast<pthread_mutex_t*
>(data_);
106 int errorcode = pthread_mutex_unlock(mutex);
107 return errorcode == 0;
113 pthread_mutex_t* mutex =
static_cast<pthread_mutex_t*
>(data_);
116 int errorcode = pthread_mutex_trylock(mutex);
117 return errorcode == 0;
122 #elif defined(LLVM_ON_UNIX)
124 #elif defined( LLVM_ON_WIN32)
127 #warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in Support/Mutex.cpp
bool acquire()
Unconditionally acquire the lock.
bool release()
Unconditionally release the lock.
MutexImpl(bool recursive=true)
Default Constructor.
void *malloc(size_t size);
bool tryacquire()
Try to acquire the lock.