2000-06-07 03:59:34 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 15:16:36 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2006-01-04 07:11:52 +08:00
|
|
|
* Copyright 1998-2006 The OpenLDAP Foundation.
|
2000-06-07 03:59:34 +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>.
|
2000-06-07 03:59:34 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
2000-06-08 13:14:46 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2001-12-18 10:25:21 +08:00
|
|
|
#include <ac/stdarg.h>
|
2000-06-08 03:21:45 +08:00
|
|
|
#include <ac/stdlib.h>
|
|
|
|
#include <ac/string.h>
|
2000-09-15 11:06:51 +08:00
|
|
|
#include <ac/unistd.h>
|
2000-06-08 03:21:45 +08:00
|
|
|
|
2005-09-18 07:28:08 +08:00
|
|
|
#include "ldap_pvt_thread.h" /* Get the thread interface */
|
|
|
|
#include "ldap_thr_debug.h" /* May redirect thread initialize/destroy calls */
|
2000-06-07 03:59:34 +08:00
|
|
|
|
2000-06-08 03:21:45 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
/*
|
|
|
|
* Common LDAP thread routines
|
|
|
|
* see thr_*.c for implementation specific routines
|
|
|
|
* see rdwr.c for generic reader/writer lock implementation
|
|
|
|
* see tpool.c for generic thread pool implementation
|
|
|
|
*/
|
2000-06-08 03:21:45 +08:00
|
|
|
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
int ldap_pvt_thread_initialize( void )
|
2000-06-07 03:59:34 +08:00
|
|
|
{
|
2000-06-08 03:21:45 +08:00
|
|
|
int rc;
|
2000-06-13 10:42:13 +08:00
|
|
|
static int init = 0;
|
2006-04-29 04:12:45 +08:00
|
|
|
ldap_pvt_thread_rmutex_t rm;
|
2006-04-29 05:39:38 +08:00
|
|
|
ldap_pvt_thread_t tid;
|
2000-06-13 10:42:13 +08:00
|
|
|
|
|
|
|
/* we only get one shot at this */
|
|
|
|
if( init++ ) return -1;
|
2000-06-08 03:21:45 +08:00
|
|
|
|
|
|
|
rc = ldap_int_thread_initialize();
|
2000-06-13 10:42:13 +08:00
|
|
|
if( rc ) return rc;
|
|
|
|
|
|
|
|
#ifndef LDAP_THREAD_HAVE_TPOOL
|
|
|
|
rc = ldap_int_thread_pool_startup();
|
|
|
|
if( rc ) return rc;
|
|
|
|
#endif
|
|
|
|
|
2006-04-29 04:12:45 +08:00
|
|
|
/* kludge to pull symbol definitions in */
|
|
|
|
ldap_pvt_thread_rmutex_init( &rm );
|
2006-04-29 05:39:38 +08:00
|
|
|
tid = ldap_pvt_thread_self();
|
|
|
|
ldap_pvt_thread_rmutex_lock( &rm, tid );
|
|
|
|
ldap_pvt_thread_rmutex_trylock( &rm, tid );
|
|
|
|
ldap_pvt_thread_rmutex_unlock( &rm, tid );
|
|
|
|
ldap_pvt_thread_rmutex_unlock( &rm, tid );
|
2006-04-29 04:12:45 +08:00
|
|
|
ldap_pvt_thread_rmutex_destroy( &rm );
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
return 0;
|
2000-06-07 03:59:34 +08:00
|
|
|
}
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
int ldap_pvt_thread_destroy( void )
|
2000-06-07 03:59:34 +08:00
|
|
|
{
|
2000-06-13 10:42:13 +08:00
|
|
|
#ifndef LDAP_THREAD_HAVE_TPOOL
|
|
|
|
(void) ldap_int_thread_pool_shutdown();
|
|
|
|
#endif
|
2000-06-14 04:43:59 +08:00
|
|
|
return ldap_int_thread_destroy();
|
2000-06-07 03:59:34 +08:00
|
|
|
}
|
|
|
|
|
2005-09-18 07:28:08 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Default implementations of some LDAP thread routines
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define LDAP_THREAD_IMPLEMENTATION
|
|
|
|
#include "ldap_thr_debug.h" /* May rename the symbols defined below */
|
|
|
|
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
#ifndef LDAP_THREAD_HAVE_GETCONCURRENCY
|
2000-06-08 03:21:45 +08:00
|
|
|
int
|
2000-06-07 03:59:34 +08:00
|
|
|
ldap_pvt_thread_get_concurrency ( void )
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2000-06-13 10:42:13 +08:00
|
|
|
#endif
|
2000-06-07 03:59:34 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
#ifndef LDAP_THREAD_HAVE_SETCONCURRENCY
|
2000-06-08 03:21:45 +08:00
|
|
|
int
|
2000-06-07 03:59:34 +08:00
|
|
|
ldap_pvt_thread_set_concurrency ( int concurrency )
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
2000-06-13 10:42:13 +08:00
|
|
|
#endif
|
2000-06-07 03:59:34 +08:00
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
#ifndef LDAP_THREAD_HAVE_SLEEP
|
|
|
|
/*
|
|
|
|
* Here we assume we have fully preemptive threads and that sleep()
|
|
|
|
* does the right thing.
|
2000-06-08 03:21:45 +08:00
|
|
|
*/
|
2000-06-13 10:42:13 +08:00
|
|
|
unsigned int
|
|
|
|
ldap_pvt_thread_sleep(
|
|
|
|
unsigned int interval
|
|
|
|
)
|
2000-06-08 03:21:45 +08:00
|
|
|
{
|
2000-06-13 10:42:13 +08:00
|
|
|
sleep( interval );
|
|
|
|
return 0;
|
2000-06-08 03:21:45 +08:00
|
|
|
}
|
2000-06-13 10:42:13 +08:00
|
|
|
#endif
|