openldap/libraries/libldap_r/threads.c

89 lines
1.7 KiB
C
Raw Normal View History

2000-06-07 03:59:34 +08:00
/* $OpenLDAP$ */
/*
* Copyright 1998-2000 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.
*/
#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
2000-06-07 03:59:34 +08:00
#include "ldap_pvt_thread.h"
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
}
#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