mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
Additional tweak for HAVE_PTHREADS_OS390
This commit is contained in:
parent
d8929296b8
commit
f969443fb7
1 changed files with 9 additions and 5 deletions
|
|
@ -97,7 +97,7 @@ ldap_pvt_thread_create( ldap_pvt_thread_t * thread,
|
|||
#ifdef PTHREAD_CREATE_DETACHED
|
||||
} else {
|
||||
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
|
||||
#elif HAVE_PTHREAD_OS390
|
||||
#elif HAVE_PTHREADS_OS390
|
||||
} else {
|
||||
int st = __DETACHED;
|
||||
pthread_attr_setdetachstate(&attr, &st);
|
||||
|
|
@ -111,13 +111,17 @@ ldap_pvt_thread_create( ldap_pvt_thread_t * thread,
|
|||
#endif
|
||||
|
||||
rtn = pthread_create( thread, &attr, start_routine, arg );
|
||||
#ifdef HAVE_PTHREAD_OS390
|
||||
#ifdef HAVE_PTHREADS_OS390
|
||||
if ( rtn == -1 ) rtn = errno;
|
||||
#endif
|
||||
|
||||
#if !defined( PTHREAD_CREATE_JOINABLE ) && !defined( PTHREAD_UNDETACHED )
|
||||
if( detach ) {
|
||||
#ifdef HAVE_PTHREADS_OS390
|
||||
(void) pthread_detach( thread );
|
||||
#else
|
||||
(void) pthread_detach( *thread );
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
pthread_attr_destroy(&attr);
|
||||
|
|
@ -148,7 +152,7 @@ ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return )
|
|||
if (thread_return==NULL)
|
||||
thread_return=&dummy;
|
||||
#endif
|
||||
#ifdef HAVE_PTHREAD_OS390
|
||||
#ifdef HAVE_PTHREADS_OS390
|
||||
int st = pthread_join( thread, thread_return );
|
||||
if ( st == -1 ) st = errno;
|
||||
return st;
|
||||
|
|
@ -161,7 +165,7 @@ int
|
|||
ldap_pvt_thread_kill( ldap_pvt_thread_t thread, int signo )
|
||||
{
|
||||
#ifdef HAVE_PTHREAD_KILL
|
||||
#ifdef HAVE_PTHREAD_OS390
|
||||
#ifdef HAVE_PTHREADS_OS390
|
||||
int st = pthread_kill( thread, signo );
|
||||
if ( st == -1 ) st = errno;
|
||||
return st;
|
||||
|
|
@ -187,7 +191,7 @@ ldap_pvt_thread_yield( void )
|
|||
return sched_yield();
|
||||
|
||||
#elif HAVE_PTHREAD_YIELD
|
||||
#if HAVE_PTHREAD_OS390
|
||||
#if HAVE_PTHREADS_OS390
|
||||
pthread_yield(NULL);
|
||||
#else
|
||||
pthread_yield();
|
||||
|
|
|
|||
Loading…
Reference in a new issue