From: Kurt Zeilenga Date: Mon, 30 Nov 1998 20:37:48 +0000 (+0000) Subject: We shouldn't detach a thread that we want to join with... X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~990 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=daaf487bddfc89975ab9bc6721f700e7c9cc5e89;p=openldap We shouldn't detach a thread that we want to join with... --- diff --git a/servers/slapd/main.c b/servers/slapd/main.c index a9248996da..690da499d5 100644 --- a/servers/slapd/main.c +++ b/servers/slapd/main.c @@ -177,7 +177,10 @@ main( int argc, char **argv ) time( &starttime ); pthread_attr_init( &attr ); +#ifdef DETACH_LISTENER_THREAD + /* we should detach it if we're going to join with it */ pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED ); +#endif #if !defined(HAVE_PTHREADS_D4) /* POSIX_THREADS or compatible @@ -201,7 +204,11 @@ main( int argc, char **argv ) } #endif /* !draft4 */ pthread_attr_destroy( &attr ); +#ifdef HAVE_PHREADS_FINAL + pthread_join( listener_tid, (void *) NULL ); +#else pthread_join( listener_tid, (void *) &status ); +#endif pthread_exit( 0 ); } else { Connection c;