2003-11-26 15:16:36 +08:00
|
|
|
/* thr_cthreads.c - wrapper for mach cthreads */
|
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/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1998-2005 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-17 23:46:19 +08:00
|
|
|
*/
|
2003-11-27 08:33:55 +08:00
|
|
|
/* This work was initially developed by Luke Howard for inclusion
|
|
|
|
* in U-MICH LDAP 3.3.
|
|
|
|
*/
|
1999-01-17 23:46:19 +08:00
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#if defined( HAVE_MACH_CTHREADS )
|
2000-06-13 10:42:13 +08:00
|
|
|
#include "ldap_pvt_thread.h"
|
1999-01-15 22:54:25 +08:00
|
|
|
|
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
|
|
|
{
|
|
|
|
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
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
*thread = cthread_fork( (cthread_fn_t) start_routine, arg);
|
|
|
|
return ( *thread == NULL ? -1 : 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_exit( void *retval )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
cthread_exit( (any_t) 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
|
|
|
{
|
|
|
|
void *status;
|
1999-08-17 08:10:43 +08:00
|
|
|
status = (void *) cthread_join ( thread );
|
1999-01-15 22:54:25 +08:00
|
|
|
if (thread_return != NULL)
|
|
|
|
{
|
|
|
|
*thread_return = status;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_yield( void )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
cthread_yield();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
condition_init( cond );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
condition_clear( cond );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
condition_signal( cond );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
1999-01-29 14:05:18 +08:00
|
|
|
condition_broadcast( cond );
|
1999-01-15 22:54:25 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
condition_wait( cond, mutex );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_init( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
mutex_init( mutex );
|
|
|
|
mutex->name = NULL;
|
|
|
|
return ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
mutex_clear( mutex );
|
|
|
|
return ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
mutex_lock( mutex );
|
|
|
|
return ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
{
|
|
|
|
mutex_unlock( mutex );
|
|
|
|
return ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_trylock( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
return mutex_try_lock( mutex );
|
|
|
|
}
|
|
|
|
|
2003-01-24 14:49:13 +08:00
|
|
|
ldap_pvt_thread_t
|
|
|
|
ldap_pvt_thread_self( void )
|
|
|
|
{
|
|
|
|
return cthread_self();
|
|
|
|
}
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
#endif /* HAVE_MACH_CTHREADS */
|