1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-01-17 23:46:19 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* thr_posix.c - wrapper around posix and posixish thread implementations.
|
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>
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
#include "ldap_pvt_thread.h"
|
|
|
|
|
|
|
|
|
1999-03-04 05:21:40 +08:00
|
|
|
#if HAVE_PTHREADS_D4
|
|
|
|
# define LDAP_PVT_THREAD_ATTR_DEFAULT pthread_attr_default
|
|
|
|
# define LDAP_PVT_THREAD_CONDATTR_DEFAULT pthread_condattr_default
|
|
|
|
# define LDAP_PVT_THREAD_MUTEXATTR_DEFAULT pthread_mutexattr_default
|
|
|
|
#else
|
|
|
|
# define LDAP_PVT_THREAD_ATTR_DEFAULT NULL
|
|
|
|
# define LDAP_PVT_THREAD_CONDATTR_DEFAULT NULL
|
|
|
|
# define LDAP_PVT_THREAD_MUTEXATTR_DEFAULT NULL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_initialize( void )
|
|
|
|
{
|
|
|
|
#if defined( LDAP_THREAD_CONCURRENCY ) && HAVE_PTHREAD_SETCONCURRENCY
|
1999-02-04 02:29:27 +08:00
|
|
|
ldap_pvt_thread_set_concurrency( LDAP_THREAD_CONCURRENCY );
|
1999-01-28 12:34:55 +08:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-04-07 05:57:16 +08:00
|
|
|
int
|
|
|
|
ldap_pvt_thread_destroy( void )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
#ifdef HAVE_PTHREAD_SETCONCURRENCY
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_set_concurrency(int n)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_PTHREAD_SETCONCURRENCY
|
|
|
|
return pthread_setconcurrency( n );
|
|
|
|
#elif HAVE_THR_SETCONCURRENCY
|
|
|
|
return pthread_setconcurrency( n );
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD_GETCONCURRENCY
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_get_concurrency(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_PTHREAD_GETCONCURRENCY
|
|
|
|
return pthread_getconcurrency();
|
|
|
|
#elif HAVE_THR_GETCONCURRENCY
|
|
|
|
return pthread_getconcurrency();
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
int
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_create( ldap_pvt_thread_t * thread,
|
|
|
|
int detach,
|
|
|
|
void *(*start_routine)( void * ),
|
|
|
|
void *arg)
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
1999-03-04 05:21:40 +08:00
|
|
|
int rtn = pthread_create( thread, LDAP_PVT_THREAD_ATTR_DEFAULT,
|
|
|
|
start_routine, arg );
|
1999-01-28 12:34:55 +08:00
|
|
|
|
|
|
|
if( detach ) {
|
|
|
|
#ifdef HAVE_PTHREADS_FINAL
|
|
|
|
pthread_detach( *thread );
|
1999-01-15 22:54:25 +08:00
|
|
|
#else
|
1999-01-28 12:34:55 +08:00
|
|
|
pthread_detach( thread );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return rtn;
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ldap_pvt_thread_exit( void *retval )
|
|
|
|
{
|
|
|
|
pthread_exit( retval );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return )
|
|
|
|
{
|
|
|
|
#if !defined( HAVE_PTHREADS_FINAL )
|
|
|
|
void *dummy;
|
|
|
|
if (thread_return==NULL)
|
|
|
|
thread_return=&dummy;
|
|
|
|
#endif
|
|
|
|
return pthread_join( thread, thread_return );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_kill( ldap_pvt_thread_t thread, int signo )
|
|
|
|
{
|
|
|
|
#ifdef HAVE_PTHREAD_KILL
|
|
|
|
return pthread_kill( thread, signo );
|
|
|
|
#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
|
|
|
|
ldap_pvt_thread_yield( void )
|
|
|
|
{
|
1999-08-22 01:19:10 +08:00
|
|
|
#ifdef _POSIX_THREAD_IS_GNU_PTH
|
|
|
|
sched_yield();
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
#elif HAVE_SCHED_YIELD
|
1999-01-15 22:54:25 +08:00
|
|
|
return sched_yield();
|
1999-08-22 01:19:10 +08:00
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
#elif HAVE_PTHREAD_YIELD
|
1999-03-04 05:21:40 +08:00
|
|
|
pthread_yield();
|
|
|
|
return 0;
|
1999-08-22 01:19:10 +08:00
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
#elif HAVE_THR_YIELD
|
|
|
|
return thr_yield();
|
1999-08-22 01:19:10 +08:00
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
#else
|
1999-01-28 12:34:55 +08:00
|
|
|
return 0;
|
|
|
|
#endif
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_cond_init( ldap_pvt_thread_cond_t *cond )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
1999-03-04 05:21:40 +08:00
|
|
|
return pthread_cond_init( cond, LDAP_PVT_THREAD_CONDATTR_DEFAULT );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
1999-01-29 14:05:18 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_cond_destroy( ldap_pvt_thread_cond_t *cond )
|
|
|
|
{
|
|
|
|
return pthread_cond_destroy( cond );
|
|
|
|
}
|
1999-01-15 22:54:25 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_cond_signal( ldap_pvt_thread_cond_t *cond )
|
|
|
|
{
|
|
|
|
return pthread_cond_signal( cond );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_cond_broadcast( ldap_pvt_thread_cond_t *cond )
|
|
|
|
{
|
|
|
|
return pthread_cond_broadcast( cond );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_cond_wait( ldap_pvt_thread_cond_t *cond,
|
|
|
|
ldap_pvt_thread_mutex_t *mutex )
|
|
|
|
{
|
|
|
|
return pthread_cond_wait( cond, mutex );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_init( ldap_pvt_thread_mutex_t *mutex )
|
|
|
|
{
|
1999-03-04 05:21:40 +08:00
|
|
|
return pthread_mutex_init( mutex, LDAP_PVT_THREAD_MUTEXATTR_DEFAULT );
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_mutex_destroy( ldap_pvt_thread_mutex_t *mutex )
|
|
|
|
{
|
|
|
|
return pthread_mutex_destroy( mutex );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_mutex_lock( ldap_pvt_thread_mutex_t *mutex )
|
|
|
|
{
|
|
|
|
return pthread_mutex_lock( mutex );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ldap_pvt_thread_mutex_unlock( ldap_pvt_thread_mutex_t *mutex )
|
|
|
|
{
|
|
|
|
return pthread_mutex_unlock( mutex );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_PTHREADS */
|
|
|
|
|