mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-06 15:10:22 -05:00
Added missing ldap_pvt_thread_mutex_trylock function.
This commit is contained in:
parent
e63364baac
commit
5279265f2e
1 changed files with 6 additions and 0 deletions
|
|
@ -195,6 +195,12 @@ ldap_pvt_thread_mutex_lock( ldap_pvt_thread_mutex_t *mutex )
|
|||
return pthread_mutex_lock( mutex );
|
||||
}
|
||||
|
||||
int
|
||||
ldap_pvt_thread_mutex_trylock( ldap_pvt_thread_mutex_t *mutex )
|
||||
{
|
||||
return pthread_mutex_trylock( mutex );
|
||||
}
|
||||
|
||||
int
|
||||
ldap_pvt_thread_mutex_unlock( ldap_pvt_thread_mutex_t *mutex )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue