mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
More NT threading fixes
This commit is contained in:
parent
d6a56aaf25
commit
a7d74e9080
1 changed files with 6 additions and 11 deletions
|
|
@ -51,10 +51,7 @@ ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return )
|
|||
{
|
||||
DWORD status;
|
||||
status = WaitForSingleObject( (HANDLE) thread, INFINITE );
|
||||
if (status == WAIT_FAILED) {
|
||||
return -1;
|
||||
}
|
||||
return 0;
|
||||
return status == WAIT_FAILED ? -1 : 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
@ -124,8 +121,9 @@ ldap_pvt_thread_mutex_destroy( ldap_pvt_thread_mutex_t *mutex )
|
|||
int
|
||||
ldap_pvt_thread_mutex_lock( ldap_pvt_thread_mutex_t *mutex )
|
||||
{
|
||||
WaitForSingleObject( *mutex, INFINITE );
|
||||
return ( 0 );
|
||||
DWORD status;
|
||||
status = WaitForSingleObject( *mutex, INFINITE );
|
||||
return status == WAIT_FAILED ? -1 : 0;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
@ -139,12 +137,9 @@ int
|
|||
ldap_pvt_thread_mutex_trylock( ldap_pvt_thread_mutex_t *mp )
|
||||
{
|
||||
DWORD status;
|
||||
|
||||
status = WaitForSingleObject( *mp, 0 );
|
||||
if ( (status == WAIT_FAILED) || (status == WAIT_TIMEOUT) )
|
||||
return 0;
|
||||
else
|
||||
return 1;
|
||||
return status == WAIT_FAILED || status == WAIT_TIMEOUT
|
||||
? -1 : 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue