openldap/libraries/libldap_r/threads.c

103 lines
2.0 KiB
C
Raw Normal View History

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/>.
*
2005-01-02 04:49:32 +08:00
* Copyright 1998-2005 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"
#include <stdio.h>
#include <ac/stdarg.h>
2000-06-08 03:21:45 +08:00
#include <ac/stdlib.h>
#include <ac/string.h>
#include <ac/unistd.h>
2000-06-08 03:21:45 +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
/*
* 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
int ldap_pvt_thread_initialize( void )
2000-06-07 03:59:34 +08:00
{
2000-06-08 03:21:45 +08:00
int rc;
static int init = 0;
/* we only get one shot at this */
if( init++ ) return -1;
2000-06-08 03:21:45 +08:00
rc = ldap_int_thread_initialize();
if( rc ) return rc;
#ifndef LDAP_THREAD_HAVE_TPOOL
rc = ldap_int_thread_pool_startup();
if( rc ) return rc;
#endif
return 0;
2000-06-07 03:59:34 +08:00
}
int ldap_pvt_thread_destroy( void )
2000-06-07 03:59:34 +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
}
/*
* Default implementations of some LDAP thread routines
*/
#define LDAP_THREAD_IMPLEMENTATION
#include "ldap_thr_debug.h" /* May rename the symbols defined below */
#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;
}
#endif
2000-06-07 03:59:34 +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;
}
#endif
2000-06-07 03:59:34 +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
*/
unsigned int
ldap_pvt_thread_sleep(
unsigned int interval
)
2000-06-08 03:21:45 +08:00
{
sleep( interval );
return 0;
2000-06-08 03:21:45 +08:00
}
#endif