X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslurpd%2Freplica.c;h=a01e0516dce726f122aac918ef238fc2534c6b51;hb=63e843d2003ddf20f3725ad439991e769ffc792a;hp=98521033b23e4df4e98c9dad3c24327aea994a68;hpb=fc03c3f07a3ad7f2de84aeb76399a1e79f5826a9;p=openldap diff --git a/servers/slurpd/replica.c b/servers/slurpd/replica.c index 98521033b2..a01e0516dc 100644 --- a/servers/slurpd/replica.c +++ b/servers/slurpd/replica.c @@ -1,5 +1,18 @@ -/* - * Copyright (c) 1996 Regents of the University of Michigan. +/* $OpenLDAP$ */ +/* This work is part of OpenLDAP Software . + * + * Copyright 1998-2005 The OpenLDAP Foundation. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + */ +/* Portions Copyright (c) 1996 Regents of the University of Michigan. * All rights reserved. * * Redistribution and use in source and binary forms are permitted @@ -9,6 +22,10 @@ * software without specific prior written permission. This software * is provided ``as is'' without express or implied warranty. */ +/* ACKNOWLEDGEMENTS: + * This work was originally developed by the University of Michigan + * (as part of U-MICH LDAP). + */ /* @@ -18,20 +35,22 @@ #include "portable.h" #include +#include #include "slurp.h" #include "globals.h" - /* * Just invoke the Ri's process() member function, and log the start and * finish. */ -void +static void * replicate( - Ri *ri + void *ri_arg ) { + Ri *ri = (Ri *) ri_arg; + Debug( LDAP_DEBUG_ARGS, "begin replication thread for %s:%d\n", ri->ri_hostname, ri->ri_port, 0 ); @@ -39,7 +58,7 @@ replicate( Debug( LDAP_DEBUG_ARGS, "end replication thread for %s:%d\n", ri->ri_hostname, ri->ri_port, 0 ); - return; + return NULL; } @@ -52,38 +71,13 @@ start_replica_thread( Ri *ri ) { - pthread_attr_t attr; - - pthread_attr_init( &attr ); -#ifdef NOTDEF - /* if main wants to join with us, we shouldn't detach */ - pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED ); -#endif - -#if !defined(HAVE_PTHREADS_D4) - /* POSIX_THREADS or compatible - * This is a draft 10 or standard pthreads implementation - */ - if ( pthread_create( &(ri->ri_tid), &attr, replicate, - (void *) ri ) != 0 ) { - Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" pthread_create failed\n", - ri->ri_hostname, ri->ri_port, 0 ); - pthread_attr_destroy( &attr ); - return -1; - } -#else /* !final */ - /* - * This is a draft 4 or earlier pthreads implementation - */ - if ( pthread_create( &(ri->ri_tid), attr, replicate, + /* POSIX_THREADS or compatible */ + if ( ldap_pvt_thread_create( &(ri->ri_tid), 0, replicate, (void *) ri ) != 0 ) { - Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" pthread_create failed\n", + Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" ldap_pvt_thread_create failed\n", ri->ri_hostname, ri->ri_port, 0 ); - pthread_attr_destroy( &attr ); return -1; } -#endif /* !final */ - pthread_attr_destroy( &attr ); return 0; }