2010-04-03 05:58:14 +01:00
|
|
|
/************************************************************************
|
|
|
|
** **
|
|
|
|
** The YapTab/YapOr/OPTYap systems **
|
|
|
|
** **
|
|
|
|
** YapTab extends the Yap Prolog engine to support sequential tabling **
|
|
|
|
** YapOr extends the Yap Prolog engine to support or-parallelism **
|
|
|
|
** OPTYap extends the Yap Prolog engine to support or-parallel tabling **
|
|
|
|
** **
|
|
|
|
** **
|
|
|
|
** Yap Prolog was developed at University of Porto, Portugal **
|
|
|
|
** **
|
|
|
|
************************************************************************/
|
2005-05-31 09:24:24 +01:00
|
|
|
|
2010-04-03 05:58:14 +01:00
|
|
|
/* **********************************************************************
|
|
|
|
** Atomic locks for PTHREADS **
|
|
|
|
************************************************************************/
|
2010-01-22 22:30:11 +00:00
|
|
|
|
2010-04-03 05:58:14 +01:00
|
|
|
#include <pthread.h>
|
2004-02-12 23:48:19 +00:00
|
|
|
|
|
|
|
#define INIT_LOCK(LOCK_VAR) pthread_mutex_init(&(LOCK_VAR), NULL)
|
|
|
|
#define DESTROY_LOCK(LOCK_VAR) pthread_mutex_destroy(&(LOCK_VAR))
|
|
|
|
#define TRY_LOCK(LOCK_PTR) pthread_mutex_trylock(&(LOCK_VAR))
|
|
|
|
#define LOCK(LOCK_VAR) pthread_mutex_lock(&(LOCK_VAR))
|
|
|
|
#define UNLOCK(LOCK_VAR) pthread_mutex_unlock(&(LOCK_VAR))
|
2010-01-15 12:04:01 +00:00
|
|
|
static inline int
|
|
|
|
xIS_LOCKED(pthread_mutex_t *LOCK_VAR) {
|
|
|
|
if (pthread_mutex_trylock(LOCK_VAR) == 0) {
|
|
|
|
pthread_mutex_unlock(LOCK_VAR);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
static inline int
|
|
|
|
xIS_UNLOCKED(pthread_mutex_t *LOCK_VAR) {
|
|
|
|
if (pthread_mutex_trylock(LOCK_VAR) == 0) {
|
|
|
|
pthread_mutex_unlock(LOCK_VAR);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#define IS_LOCKED(LOCK_VAR) xIS_LOCKED(&(LOCK_VAR))
|
|
|
|
#define IS_UNLOCKED(LOCK_VAR) xIS_UNLOCKED(&(LOCK_VAR))
|
2004-02-12 23:48:19 +00:00
|
|
|
|
|
|
|
#define INIT_RWLOCK(X) pthread_rwlock_init(&(X), NULL)
|
|
|
|
#define DESTROY_RWLOCK(X) pthread_rwlock_destroy(&(X))
|
|
|
|
#define READ_LOCK(X) pthread_rwlock_rdlock(&(X))
|
|
|
|
#define READ_UNLOCK(X) pthread_rwlock_unlock(&(X))
|
|
|
|
#define WRITE_LOCK(X) pthread_rwlock_wrlock(&(X))
|
|
|
|
#define WRITE_UNLOCK(X) pthread_rwlock_unlock(&(X))
|