X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslurpd%2Freplica.c;h=50aca4e77ef72525b543b732f56e4f96f3dda049;hb=a5c2403eb149d7c4e686abafa6bc4b73af9891a9;hp=ed25a629077031feed19d6dee387adaea5b66f1b;hpb=42e0d83cb3a1a1c5b25183f1ab74ce7edbe25de7;p=openldap diff --git a/servers/slurpd/replica.c b/servers/slurpd/replica.c index ed25a62907..50aca4e77e 100644 --- a/servers/slurpd/replica.c +++ b/servers/slurpd/replica.c @@ -1,3 +1,4 @@ +/* $OpenLDAP$ */ /* * Copyright (c) 1996 Regents of the University of Michigan. * All rights reserved. @@ -15,6 +16,7 @@ * replica.c - code to start up replica threads. */ +#include "portable.h" #include @@ -26,22 +28,21 @@ * Just invoke the Ri's process() member function, and log the start and * finish. */ -void +static void * replicate( - Ri *ri + void *ri_arg ) { - int i; - unsigned long seq; + Ri *ri = (Ri *) ri_arg; Debug( LDAP_DEBUG_ARGS, "begin replication thread for %s:%d\n", - ri->ri_hostname, ri->ri_port, 0 ); + ((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port, 0 ); ri->ri_process( ri ); Debug( LDAP_DEBUG_ARGS, "end replication thread for %s:%d\n", ri->ri_hostname, ri->ri_port, 0 ); - return; + return NULL; } @@ -54,18 +55,13 @@ start_replica_thread( Ri *ri ) { - pthread_attr_t attr; - - pthread_attr_init( &attr ); - pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED ); - - if ( pthread_create( &(ri->ri_tid), attr, (void *) 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; } - pthread_attr_destroy( &attr ); + return 0; }