Delete unused syncrepl_pool

This commit is contained in:
Howard Chu 2005-02-11 10:20:16 +00:00
parent f13d97e09c
commit b06eea3d99
2 changed files with 0 additions and 9 deletions

View file

@ -62,9 +62,6 @@ BackendInfo *backendInfo = NULL;
int nBackendDB = 0;
BackendDB *backendDB = NULL;
ldap_pvt_thread_pool_t syncrepl_pool;
int syncrepl_pool_max = SLAP_MAX_SYNCREPL_THREADS;
static int
backend_init_controls( BackendInfo *bi )
{
@ -95,8 +92,6 @@ int backend_init(void)
{
int rc = -1;
ldap_pvt_thread_pool_init( &syncrepl_pool, syncrepl_pool_max, 0 );
if((nBackendInfo != 0) || (backendInfo != NULL)) {
/* already initialized */
Debug( LDAP_DEBUG_ANY,
@ -443,8 +438,6 @@ int backend_destroy(void)
BackendDB *bd;
struct slap_csn_entry *csne;
ldap_pvt_thread_pool_destroy( &syncrepl_pool, 1 );
/* destroy each backend database */
for( i = 0, bd = backendDB; i < nBackendDB; i++, bd++ ) {

View file

@ -109,8 +109,6 @@ LDAP_BEGIN_DECL
#define SLAP_MAX_WORKER_THREADS (16)
#define SLAP_MAX_SYNCREPL_THREADS (8)
#define SLAP_SB_MAX_INCOMING_DEFAULT ((1<<18) - 1)
#define SLAP_SB_MAX_INCOMING_AUTH ((1<<24) - 1)