ldap_pvt_thread_cond_broadcast() was missing from stubs.

I probably deleted it by mistaked when axing cond attrs.
This commit is contained in:
Kurt Zeilenga 1999-01-28 23:40:26 +00:00
parent 80da91a5b2
commit 98f2462af0

View File

@ -81,6 +81,12 @@ ldap_pvt_thread_cond_signal( ldap_pvt_thread_cond_t *cond )
return 0;
}
int
ldap_pvt_thread_cond_broadcast( ldap_pvt_thread_cond_t *cond )
{
return 0;
}
int
ldap_pvt_thread_cond_wait( ldap_pvt_thread_cond_t *cond,
ldap_pvt_thread_mutex_t *mutex )