From: Howard Chu Date: Tue, 28 Feb 2012 04:42:29 +0000 (-0800) Subject: ITS#7115 add missing pool_idle/unidle stubs X-Git-Tag: OPENLDAP_REL_ENG_2_4_30~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ae7435ec5c6ece7c9988e69c26374a0f0fe2960d;p=openldap ITS#7115 add missing pool_idle/unidle stubs --- diff --git a/libraries/libldap_r/thr_stub.c b/libraries/libldap_r/thr_stub.c index 402abc35f7..ec0a7ff688 100644 --- a/libraries/libldap_r/thr_stub.c +++ b/libraries/libldap_r/thr_stub.c @@ -202,6 +202,18 @@ ldap_pvt_thread_pool_destroy ( return(0); } +void +ldap_pvt_thread_pool_idle ( ldap_pvt_thread_pool_t *pool ) +{ + return; +} + +void +ldap_pvt_thread_pool_unidle ( ldap_pvt_thread_pool_t *pool ) +{ + return; +} + int ldap_pvt_thread_pool_getkey ( void *ctx, void *key, void **data, ldap_pvt_thread_pool_keyfree_t **kfree ) {