2003-11-26 15:16:36 +08:00
|
|
|
/* ldap_pvt_thread.h - ldap threads header file */
|
1999-08-31 09:17:01 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 15:16:36 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation.
|
1999-01-15 22:31:12 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2001-05-29 11:29:53 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
2003-11-26 15:16:36 +08:00
|
|
|
* 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-15 22:31:12 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LDAP_PVT_THREAD_H
|
|
|
|
#define _LDAP_PVT_THREAD_H
|
|
|
|
|
1999-01-28 05:11:55 +08:00
|
|
|
#include "ldap_cdefs.h"
|
2000-06-07 03:59:34 +08:00
|
|
|
#include "ldap_int_thread.h"
|
1999-01-15 22:31:12 +08:00
|
|
|
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
2000-06-07 03:59:34 +08:00
|
|
|
typedef ldap_int_thread_t ldap_pvt_thread_t;
|
|
|
|
typedef ldap_int_thread_mutex_t ldap_pvt_thread_mutex_t;
|
|
|
|
typedef ldap_int_thread_cond_t ldap_pvt_thread_cond_t;
|
1999-01-15 22:31:12 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_initialize LDAP_P(( void ));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-04-14 23:02:38 +08:00
|
|
|
ldap_pvt_thread_destroy LDAP_P(( void ));
|
1999-01-28 12:34:55 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( unsigned int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_sleep LDAP_P(( unsigned int s ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-02-04 02:29:27 +08:00
|
|
|
ldap_pvt_thread_get_concurrency LDAP_P(( void ));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-02-04 02:29:27 +08:00
|
|
|
ldap_pvt_thread_set_concurrency LDAP_P(( int ));
|
1999-01-28 12:34:55 +08:00
|
|
|
|
1999-02-05 02:00:50 +08:00
|
|
|
#define LDAP_PVT_THREAD_CREATE_JOINABLE 0
|
|
|
|
#define LDAP_PVT_THREAD_CREATE_DETACHED 1
|
|
|
|
|
2001-09-26 10:35:41 +08:00
|
|
|
#ifndef LDAP_PVT_THREAD_STACK_SIZE
|
|
|
|
/* LARGE stack */
|
2002-12-11 12:35:05 +08:00
|
|
|
#define LDAP_PVT_THREAD_STACK_SIZE (4*1024*1024)
|
2001-09-26 10:35:41 +08:00
|
|
|
#endif
|
|
|
|
|
2001-12-24 11:49:54 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_create LDAP_P((
|
2001-12-24 11:49:54 +08:00
|
|
|
ldap_pvt_thread_t * thread,
|
1999-01-28 12:34:55 +08:00
|
|
|
int detach,
|
2001-12-24 11:49:54 +08:00
|
|
|
void *(*start_routine)( void * ),
|
1999-01-28 12:34:55 +08:00
|
|
|
void *arg));
|
1999-01-15 22:31:12 +08:00
|
|
|
|
2001-12-24 11:49:54 +08:00
|
|
|
LDAP_F( void )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_exit LDAP_P(( void *retval ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_join LDAP_P(( ldap_pvt_thread_t thread, void **status ));
|
1999-01-15 22:31:12 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_kill LDAP_P(( ldap_pvt_thread_t thread, int signo ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_yield LDAP_P(( void ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_cond_init LDAP_P(( ldap_pvt_thread_cond_t *cond ));
|
1999-01-15 22:31:12 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-29 13:52:40 +08:00
|
|
|
ldap_pvt_thread_cond_destroy LDAP_P(( ldap_pvt_thread_cond_t *cond ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_cond_signal LDAP_P(( ldap_pvt_thread_cond_t *cond ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_cond_broadcast LDAP_P(( ldap_pvt_thread_cond_t *cond ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_cond_wait LDAP_P((
|
2001-12-24 11:49:54 +08:00
|
|
|
ldap_pvt_thread_cond_t *cond,
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_t *mutex ));
|
1999-01-15 22:31:12 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_init LDAP_P(( ldap_pvt_thread_mutex_t *mutex ));
|
1999-01-15 22:31:12 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_mutex_destroy LDAP_P(( ldap_pvt_thread_mutex_t *mutex ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_mutex_lock LDAP_P(( ldap_pvt_thread_mutex_t *mutex ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_trylock LDAP_P(( ldap_pvt_thread_mutex_t *mutex ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock LDAP_P(( ldap_pvt_thread_mutex_t *mutex ));
|
|
|
|
|
2003-01-24 14:49:13 +08:00
|
|
|
LDAP_F( ldap_pvt_thread_t )
|
|
|
|
ldap_pvt_thread_self LDAP_P(( void ));
|
|
|
|
|
2000-06-07 08:28:35 +08:00
|
|
|
#ifndef LDAP_THREAD_HAVE_RDWR
|
2000-06-13 10:42:13 +08:00
|
|
|
typedef struct ldap_int_thread_rdwr_s * ldap_pvt_thread_rdwr_t;
|
2000-06-07 08:28:35 +08:00
|
|
|
#endif
|
1999-01-15 22:31:12 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_rdwr_init LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-29 13:52:40 +08:00
|
|
|
ldap_pvt_thread_rdwr_destroy LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_rdwr_rlock LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-02-05 02:00:50 +08:00
|
|
|
ldap_pvt_thread_rdwr_rtrylock LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_rdwr_runlock LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_rdwr_wlock LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-02-05 02:00:50 +08:00
|
|
|
ldap_pvt_thread_rdwr_wtrylock LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-01-15 22:31:12 +08:00
|
|
|
ldap_pvt_thread_rdwr_wunlock LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
|
|
|
|
|
|
|
#ifdef LDAP_DEBUG
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-02-05 02:00:50 +08:00
|
|
|
ldap_pvt_thread_rdwr_readers LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-02-05 02:00:50 +08:00
|
|
|
ldap_pvt_thread_rdwr_writers LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
1999-02-05 02:00:50 +08:00
|
|
|
ldap_pvt_thread_rdwr_active LDAP_P((ldap_pvt_thread_rdwr_t *rdwrp));
|
1999-01-15 22:31:12 +08:00
|
|
|
#endif /* LDAP_DEBUG */
|
|
|
|
|
1999-02-05 02:00:50 +08:00
|
|
|
#define LDAP_PVT_THREAD_EINVAL EINVAL
|
|
|
|
#define LDAP_PVT_THREAD_EBUSY EINVAL
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
typedef ldap_int_thread_pool_t ldap_pvt_thread_pool_t;
|
2000-06-08 03:21:45 +08:00
|
|
|
|
2002-08-24 13:39:43 +08:00
|
|
|
typedef void * (ldap_pvt_thread_start_t) LDAP_P((void *ctx, void *arg));
|
|
|
|
typedef void (ldap_pvt_thread_pool_keyfree_t) LDAP_P((void *key, void *data));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_pool_init LDAP_P((
|
|
|
|
ldap_pvt_thread_pool_t *pool_out,
|
2000-07-05 03:24:13 +08:00
|
|
|
int max_threads,
|
2000-06-13 10:42:13 +08:00
|
|
|
int max_pending ));
|
2000-06-08 03:21:45 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
2000-06-08 03:21:45 +08:00
|
|
|
ldap_pvt_thread_pool_submit LDAP_P((
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_pool_t *pool,
|
2002-08-24 13:39:43 +08:00
|
|
|
ldap_pvt_thread_start_t *start,
|
2000-06-13 10:42:13 +08:00
|
|
|
void *arg ));
|
2000-06-08 03:21:45 +08:00
|
|
|
|
2000-07-05 03:24:13 +08:00
|
|
|
LDAP_F( int )
|
|
|
|
ldap_pvt_thread_pool_maxthreads LDAP_P((
|
|
|
|
ldap_pvt_thread_pool_t *pool,
|
|
|
|
int max_threads ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
2000-06-08 03:21:45 +08:00
|
|
|
ldap_pvt_thread_pool_backload LDAP_P((
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_pool_t *pool ));
|
2000-06-08 03:21:45 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_F( int )
|
2000-06-08 03:21:45 +08:00
|
|
|
ldap_pvt_thread_pool_destroy LDAP_P((
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_pool_t *pool,
|
|
|
|
int run_pending ));
|
2000-06-08 03:21:45 +08:00
|
|
|
|
2002-08-24 13:39:43 +08:00
|
|
|
LDAP_F( int )
|
|
|
|
ldap_pvt_thread_pool_getkey LDAP_P((
|
|
|
|
void *ctx,
|
|
|
|
void *key,
|
|
|
|
void **data,
|
|
|
|
ldap_pvt_thread_pool_keyfree_t **kfree ));
|
|
|
|
|
|
|
|
LDAP_F( int )
|
|
|
|
ldap_pvt_thread_pool_setkey LDAP_P((
|
|
|
|
void *ctx,
|
|
|
|
void *key,
|
|
|
|
void *data,
|
|
|
|
ldap_pvt_thread_pool_keyfree_t *kfree ));
|
|
|
|
|
2003-01-24 14:49:13 +08:00
|
|
|
LDAP_F( void *)
|
2003-04-12 12:01:40 +08:00
|
|
|
ldap_pvt_thread_pool_context LDAP_P(( void ));
|
2003-01-24 14:49:13 +08:00
|
|
|
|
1999-01-15 22:31:12 +08:00
|
|
|
LDAP_END_DECL
|
|
|
|
|
|
|
|
#endif /* _LDAP_THREAD_H */
|