mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Fix set concurrency typos.
This commit is contained in:
parent
6f481d0fd1
commit
d671c49b94
@ -169,7 +169,7 @@ ldap_pvt_thread_sleep LDAP_P(( unsigned int s ));
|
|||||||
|
|
||||||
#ifdef HAVE_GETCONCURRENCY
|
#ifdef HAVE_GETCONCURRENCY
|
||||||
LDAP_F int
|
LDAP_F int
|
||||||
ldap_pvt_thread_getconcurrency LDAP_P(( void ));
|
ldap_pvt_thread_get_concurrency LDAP_P(( void ));
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_SETCONCURRENCY
|
#ifdef HAVE_SETCONCURRENCY
|
||||||
# ifndef LDAP_THREAD_CONCURRENCY
|
# ifndef LDAP_THREAD_CONCURRENCY
|
||||||
@ -177,7 +177,7 @@ ldap_pvt_thread_getconcurrency LDAP_P(( void ));
|
|||||||
# define LDAP_THREAD_CONCURRENCY 3
|
# define LDAP_THREAD_CONCURRENCY 3
|
||||||
# endif
|
# endif
|
||||||
LDAP_F int
|
LDAP_F int
|
||||||
ldap_pvt_thread_setconcurrency LDAP_P(( int ));
|
ldap_pvt_thread_set_concurrency LDAP_P(( int ));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
LDAP_F int
|
LDAP_F int
|
||||||
|
@ -20,7 +20,7 @@ int
|
|||||||
ldap_pvt_thread_initialize( void )
|
ldap_pvt_thread_initialize( void )
|
||||||
{
|
{
|
||||||
#if defined( LDAP_THREAD_CONCURRENCY ) && HAVE_PTHREAD_SETCONCURRENCY
|
#if defined( LDAP_THREAD_CONCURRENCY ) && HAVE_PTHREAD_SETCONCURRENCY
|
||||||
ldap_pvt_thread_setconcurrency( LDAP_THREAD_CONCURRENCY );
|
ldap_pvt_thread_set_concurrency( LDAP_THREAD_CONCURRENCY );
|
||||||
#endif
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user