2003-11-26 15:16:36 +08:00
|
|
|
/* thr_posix.c - wrapper around posix and posixish thread implementations. */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 15:16:36 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2010-04-14 06:17:29 +08:00
|
|
|
* Copyright 1998-2010 The OpenLDAP Foundation.
|
1999-01-17 23:46:19 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2003-11-26 15:16:36 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-01-15 22:54:25 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
1999-03-04 01:52:40 +08:00
|
|
|
|
1999-06-01 03:59:29 +08:00
|
|
|
#if defined( HAVE_PTHREADS )
|
|
|
|
|
1999-03-04 01:52:40 +08:00
|
|
|
#include <ac/errno.h>
|
|
|
|
|
2006-01-06 14:07:36 +08:00
|
|
|
#ifdef REPLACE_BROKEN_YIELD
|
2006-01-06 13:22:35 +08:00
|
|
|
#ifndef HAVE_NANOSLEEP
|
2006-01-06 09:02:00 +08:00
|
|
|
#include <ac/socket.h>
|
2006-01-06 13:22:35 +08:00
|
|
|
#endif
|
2006-01-06 09:02:00 +08:00
|
|
|
#include <ac/time.h>
|
|
|
|
#endif
|
|
|
|
|
2005-09-18 07:28:08 +08:00
|
|
|
#include "ldap_pvt_thread.h" /* Get the thread interface */
|
|
|
|
#define LDAP_THREAD_IMPLEMENTATION
|
|
|
|
#define LDAP_THREAD_RDWR_IMPLEMENTATION
|
|
|
|
#include "ldap_thr_debug.h" /* May rename the symbols defined below */
|
2008-01-11 00:24:07 +08:00
|
|
|
#include <signal.h> /* For pthread_kill() */
|
1999-01-15 22:54:25 +08:00
|
|
|
|
2002-09-13 07:12:18 +08:00
|
|
|
#if HAVE_PTHREADS < 6
|
2000-06-13 10:42:13 +08:00
|
|
|
# define LDAP_INT_THREAD_ATTR_DEFAULT pthread_attr_default
|
|
|
|
# define LDAP_INT_THREAD_CONDATTR_DEFAULT pthread_condattr_default
|
|
|
|
# define LDAP_INT_THREAD_MUTEXATTR_DEFAULT pthread_mutexattr_default
|
1999-03-04 05:21:40 +08:00
|
|
|
#else
|
2000-06-13 10:42:13 +08:00
|
|
|
# define LDAP_INT_THREAD_ATTR_DEFAULT NULL
|
|
|
|
# define LDAP_INT_THREAD_CONDATTR_DEFAULT NULL
|
2005-09-18 07:28:08 +08:00
|
|
|
# define LDAP_INT_THREAD_MUTEXATTR_DEFAULT NULL
|
1999-03-04 05:21:40 +08:00
|
|
|
#endif
|
|
|
|
|
2005-09-18 07:28:08 +08:00
|
|
|
#ifdef LDAP_THREAD_DEBUG
|
|
|
|
# if defined LDAP_INT_THREAD_MUTEXATTR /* May be defined in CPPFLAGS */
|
|
|
|
# elif defined HAVE_PTHREAD_KILL_OTHER_THREADS_NP
|
|
|
|
/* LinuxThreads hack */
|
|
|
|
# define LDAP_INT_THREAD_MUTEXATTR PTHREAD_MUTEX_ERRORCHECK_NP
|
|
|
|
# else
|
|
|
|
# define LDAP_INT_THREAD_MUTEXATTR PTHREAD_MUTEX_ERRORCHECK
|
|
|
|
# endif
|
|
|
|
static pthread_mutexattr_t mutex_attr;
|
|
|
|
# undef LDAP_INT_THREAD_MUTEXATTR_DEFAULT
|
|
|
|
# define LDAP_INT_THREAD_MUTEXATTR_DEFAULT &mutex_attr
|
|
|
|
#endif
|
1999-03-04 05:21:40 +08:00
|
|
|
|
2007-05-18 23:28:09 +08:00
|
|
|
#if HAVE_PTHREADS < 7
|
|
|
|
#define ERRVAL(val) ((val) < 0 ? errno : 0)
|
|
|
|
#else
|
|
|
|
#define ERRVAL(val) (val)
|
|
|
|
#endif
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
int
|
2000-06-07 03:59:34 +08:00
|
|
|
ldap_int_thread_initialize( void )
|
1999-01-28 12:34:55 +08:00
|
|
|
{
|
2005-09-18 07:28:08 +08:00
|
|
|
#ifdef LDAP_INT_THREAD_MUTEXATTR
|
|
|
|
pthread_mutexattr_init( &mutex_attr );
|
|
|
|
pthread_mutexattr_settype( &mutex_attr, LDAP_INT_THREAD_MUTEXATTR );
|
|
|
|
#endif
|
1999-01-28 12:34:55 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-04-07 05:57:16 +08:00
|
|
|
int
|
2000-06-07 03:59:34 +08:00
|
|
|
ldap_int_thread_destroy( void )
|
1999-04-07 05:57:16 +08:00
|
|
|
{
|
2000-06-18 02:49:25 +08:00
|
|
|
#ifdef HAVE_PTHREAD_KILL_OTHER_THREADS_NP
|
|
|
|
/* LinuxThreads: kill clones */
|
|
|
|
pthread_kill_other_threads_np();
|
2005-09-18 07:28:08 +08:00
|
|
|
#endif
|
|
|
|
#ifdef LDAP_INT_THREAD_MUTEXATTR
|
|
|
|
pthread_mutexattr_destroy( &mutex_attr );
|
2000-06-18 02:49:25 +08:00
|
|
|
#endif
|
1999-04-07 05:57:16 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-07 01:21:21 +08:00
|
|
|
#ifdef LDAP_THREAD_HAVE_SETCONCURRENCY
|
1999-01-28 12:34:55 +08:00
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_set_concurrency(int n)
|
1999-01-28 12:34:55 +08:00
|
|
|
{
|
|
|
|
#ifdef HAVE_PTHREAD_SETCONCURRENCY
|
|
|
|
return pthread_setconcurrency( n );
|
2007-05-10 02:17:10 +08:00
|
|
|
#elif defined(HAVE_THR_SETCONCURRENCY)
|
2000-07-07 01:21:21 +08:00
|
|
|
return thr_setconcurrency( n );
|
1999-01-28 12:34:55 +08:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-07-07 01:21:21 +08:00
|
|
|
#ifdef LDAP_THREAD_HAVE_GETCONCURRENCY
|
1999-01-28 12:34:55 +08:00
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_get_concurrency(void)
|
1999-01-28 12:34:55 +08:00
|
|
|
{
|
|
|
|
#ifdef HAVE_PTHREAD_GETCONCURRENCY
|
|
|
|
return pthread_getconcurrency();
|
2007-05-10 02:17:10 +08:00
|
|
|
#elif defined(HAVE_THR_GETCONCURRENCY)
|
2000-07-07 01:21:21 +08:00
|
|
|
return thr_getconcurrency();
|
1999-01-28 12:34:55 +08:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-09-11 15:24:21 +08:00
|
|
|
/* detachstate appeared in Draft 6, but without manifest constants.
|
|
|
|
* in Draft 7 they were called PTHREAD_CREATE_UNDETACHED and ...DETACHED.
|
|
|
|
* in Draft 8 on, ...UNDETACHED became ...JOINABLE.
|
|
|
|
*/
|
2002-09-07 22:09:09 +08:00
|
|
|
#ifndef PTHREAD_CREATE_JOINABLE
|
2002-09-11 15:24:21 +08:00
|
|
|
#ifdef PTHREAD_CREATE_UNDETACHED
|
|
|
|
#define PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED
|
|
|
|
#else
|
2002-09-07 22:09:09 +08:00
|
|
|
#define PTHREAD_CREATE_JOINABLE 0
|
|
|
|
#endif
|
2002-09-11 15:24:21 +08:00
|
|
|
#endif
|
2002-09-07 22:09:09 +08:00
|
|
|
|
|
|
|
#ifndef PTHREAD_CREATE_DETACHED
|
|
|
|
#define PTHREAD_CREATE_DETACHED 1
|
|
|
|
#endif
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_create( ldap_pvt_thread_t * thread,
|
1999-01-28 12:34:55 +08:00
|
|
|
int detach,
|
|
|
|
void *(*start_routine)( void * ),
|
|
|
|
void *arg)
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2000-05-11 17:51:24 +08:00
|
|
|
int rtn;
|
|
|
|
pthread_attr_t attr;
|
2002-09-11 15:24:21 +08:00
|
|
|
|
|
|
|
/* Always create the thread attrs, so we can set stacksize if we need to */
|
2002-09-13 07:12:18 +08:00
|
|
|
#if HAVE_PTHREADS > 5
|
2000-05-11 17:51:24 +08:00
|
|
|
pthread_attr_init(&attr);
|
2001-06-09 09:05:35 +08:00
|
|
|
#else
|
2002-09-07 22:09:09 +08:00
|
|
|
pthread_attr_create(&attr);
|
2001-09-28 02:54:17 +08:00
|
|
|
#endif
|
2001-09-26 10:35:41 +08:00
|
|
|
|
2005-04-15 14:18:18 +08:00
|
|
|
#ifdef LDAP_PVT_THREAD_SET_STACK_SIZE
|
2001-09-26 10:35:41 +08:00
|
|
|
/* this should be tunable */
|
|
|
|
pthread_attr_setstacksize( &attr, LDAP_PVT_THREAD_STACK_SIZE );
|
2001-06-09 09:05:35 +08:00
|
|
|
#endif
|
2000-05-11 17:51:24 +08:00
|
|
|
|
2002-09-11 15:24:21 +08:00
|
|
|
#if HAVE_PTHREADS > 5
|
2002-09-07 22:09:09 +08:00
|
|
|
detach = detach ? PTHREAD_CREATE_DETACHED : PTHREAD_CREATE_JOINABLE;
|
|
|
|
#if HAVE_PTHREADS == 6
|
|
|
|
pthread_attr_setdetachstate(&attr, &detach);
|
2002-07-27 08:12:39 +08:00
|
|
|
#else
|
2002-09-07 22:09:09 +08:00
|
|
|
pthread_attr_setdetachstate(&attr, detach);
|
2002-07-27 08:12:39 +08:00
|
|
|
#endif
|
2001-06-09 09:05:35 +08:00
|
|
|
#endif
|
2003-11-13 10:41:01 +08:00
|
|
|
|
|
|
|
#if HAVE_PTHREADS < 5
|
|
|
|
rtn = pthread_create( thread, attr, start_routine, arg );
|
|
|
|
#else
|
2002-09-07 22:09:09 +08:00
|
|
|
rtn = pthread_create( thread, &attr, start_routine, arg );
|
2003-11-13 10:41:01 +08:00
|
|
|
#endif
|
2007-05-18 23:28:09 +08:00
|
|
|
|
2002-09-13 07:12:18 +08:00
|
|
|
#if HAVE_PTHREADS > 5
|
2001-11-06 07:14:42 +08:00
|
|
|
pthread_attr_destroy(&attr);
|
2000-05-11 17:51:24 +08:00
|
|
|
#else
|
2002-09-07 22:09:09 +08:00
|
|
|
pthread_attr_delete(&attr);
|
1999-01-28 12:34:55 +08:00
|
|
|
if( detach ) {
|
|
|
|
pthread_detach( thread );
|
|
|
|
}
|
2001-06-09 09:05:35 +08:00
|
|
|
#endif
|
|
|
|
|
2002-09-07 22:09:09 +08:00
|
|
|
#if HAVE_PTHREADS < 7
|
|
|
|
if ( rtn < 0 ) rtn = errno;
|
|
|
|
#endif
|
1999-01-28 12:34:55 +08:00
|
|
|
return rtn;
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_exit( void *retval )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
pthread_exit( retval );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2002-09-07 22:09:09 +08:00
|
|
|
#if HAVE_PTHREADS < 7
|
1999-01-15 22:54:25 +08:00
|
|
|
void *dummy;
|
|
|
|
if (thread_return==NULL)
|
|
|
|
thread_return=&dummy;
|
2002-07-26 11:15:25 +08:00
|
|
|
#endif
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_join( thread, thread_return ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_kill( ldap_pvt_thread_t thread, int signo )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
#if defined(HAVE_PTHREAD_KILL) && HAVE_PTHREADS > 4
|
2002-10-03 04:10:55 +08:00
|
|
|
/* MacOS 10.1 is detected as v10 but has no pthread_kill() */
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_kill( thread, signo ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
#else
|
|
|
|
/* pthread package with DCE */
|
1999-03-04 01:52:40 +08:00
|
|
|
if (kill( getpid(), signo )<0)
|
1999-01-15 22:54:25 +08:00
|
|
|
return errno;
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_yield( void )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2006-01-06 14:07:36 +08:00
|
|
|
#ifdef REPLACE_BROKEN_YIELD
|
2006-01-06 13:22:35 +08:00
|
|
|
#ifdef HAVE_NANOSLEEP
|
|
|
|
struct timespec t = { 0, 0 };
|
|
|
|
nanosleep(&t, NULL);
|
|
|
|
#else
|
2006-01-06 09:02:00 +08:00
|
|
|
struct timeval tv = {0,0};
|
|
|
|
select( 0, NULL, NULL, NULL, &tv );
|
2006-01-06 13:22:35 +08:00
|
|
|
#endif
|
2006-01-06 09:02:00 +08:00
|
|
|
return 0;
|
2007-05-18 23:28:09 +08:00
|
|
|
|
2007-05-10 02:17:10 +08:00
|
|
|
#elif defined(HAVE_THR_YIELD)
|
2006-04-04 01:10:38 +08:00
|
|
|
thr_yield();
|
|
|
|
return 0;
|
2002-10-12 09:21:21 +08:00
|
|
|
|
|
|
|
#elif HAVE_PTHREADS == 10
|
1999-01-15 22:54:25 +08:00
|
|
|
return sched_yield();
|
1999-08-22 01:19:10 +08:00
|
|
|
|
2002-09-07 22:09:09 +08:00
|
|
|
#elif defined(_POSIX_THREAD_IS_GNU_PTH)
|
|
|
|
sched_yield();
|
1999-03-04 05:21:40 +08:00
|
|
|
return 0;
|
1999-08-22 01:19:10 +08:00
|
|
|
|
2002-09-07 22:09:09 +08:00
|
|
|
#elif HAVE_PTHREADS == 6
|
|
|
|
pthread_yield(NULL);
|
|
|
|
return 0;
|
2007-05-18 23:28:09 +08:00
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
#else
|
2002-09-07 22:09:09 +08:00
|
|
|
pthread_yield();
|
1999-01-28 12:34:55 +08:00
|
|
|
return 0;
|
2002-09-07 22:09:09 +08:00
|
|
|
#endif
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_init( ldap_pvt_thread_cond_t *cond )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_cond_init(
|
|
|
|
cond, LDAP_INT_THREAD_CONDATTR_DEFAULT ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
1999-01-29 14:05:18 +08:00
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_destroy( ldap_pvt_thread_cond_t *cond )
|
1999-01-29 14:05:18 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_cond_destroy( cond ) );
|
1999-01-29 14:05:18 +08:00
|
|
|
}
|
1999-01-15 22:54:25 +08:00
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_signal( ldap_pvt_thread_cond_t *cond )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_cond_signal( cond ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_broadcast( ldap_pvt_thread_cond_t *cond )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_cond_broadcast( cond ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_wait( ldap_pvt_thread_cond_t *cond,
|
|
|
|
ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_cond_wait( cond, mutex ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_init( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-28 12:34:55 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_mutex_init(
|
|
|
|
mutex, LDAP_INT_THREAD_MUTEXATTR_DEFAULT ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_destroy( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_mutex_destroy( mutex ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_mutex_lock( mutex ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
1999-11-28 12:07:11 +08:00
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_trylock( ldap_pvt_thread_mutex_t *mutex )
|
1999-11-28 12:07:11 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_mutex_trylock( mutex ) );
|
1999-11-28 12:07:11 +08:00
|
|
|
}
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_mutex_unlock( mutex ) );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
2003-01-24 14:49:13 +08:00
|
|
|
ldap_pvt_thread_t ldap_pvt_thread_self( void )
|
|
|
|
{
|
|
|
|
return pthread_self();
|
|
|
|
}
|
|
|
|
|
2007-10-25 14:42:40 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_key_create( ldap_pvt_thread_key_t *key )
|
|
|
|
{
|
|
|
|
return pthread_key_create( key, NULL );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_key_destroy( ldap_pvt_thread_key_t key )
|
|
|
|
{
|
|
|
|
return pthread_key_delete( key );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_key_setdata( ldap_pvt_thread_key_t key, void *data )
|
|
|
|
{
|
|
|
|
return pthread_setspecific( key, data );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_key_getdata( ldap_pvt_thread_key_t key, void **data )
|
|
|
|
{
|
|
|
|
*data = pthread_getspecific( key );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-06-08 08:29:32 +08:00
|
|
|
#ifdef LDAP_THREAD_HAVE_RDWR
|
2000-06-07 08:28:35 +08:00
|
|
|
#ifdef HAVE_PTHREAD_RWLOCK_DESTROY
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_rdwr_init( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_init( rw, NULL ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_rdwr_destroy( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_destroy( rw ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ldap_pvt_thread_rdwr_rlock( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_rdlock( rw ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ldap_pvt_thread_rdwr_rtrylock( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_tryrdlock( rw ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ldap_pvt_thread_rdwr_runlock( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_unlock( rw ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ldap_pvt_thread_rdwr_wlock( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_wrlock( rw ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ldap_pvt_thread_rdwr_wtrylock( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_trywrlock( rw ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int ldap_pvt_thread_rdwr_wunlock( ldap_pvt_thread_rdwr_t *rw )
|
|
|
|
{
|
2007-05-18 23:28:09 +08:00
|
|
|
return ERRVAL( pthread_rwlock_unlock( rw ) );
|
2000-06-07 08:28:35 +08:00
|
|
|
}
|
|
|
|
|
2005-09-18 07:28:08 +08:00
|
|
|
#endif /* HAVE_PTHREAD_RWLOCK_DESTROY */
|
2000-06-07 08:28:35 +08:00
|
|
|
#endif /* LDAP_THREAD_HAVE_RDWR */
|
1999-01-15 22:54:25 +08:00
|
|
|
#endif /* HAVE_PTHREADS */
|
|
|
|
|