openldap/servers/slurpd/replica.c

92 lines
2.1 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/*
* Copyright (c) 1996 Regents of the University of Michigan.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
/*
* replica.c - code to start up replica threads.
*/
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
#include "slurp.h"
#include "globals.h"
/*
* Just invoke the Ri's process() member function, and log the start and
* finish.
*/
static void *
1998-08-09 08:43:13 +08:00
replicate(
void *ri_arg
1998-08-09 08:43:13 +08:00
)
{
Ri *ri = (Ri *) ri_arg;
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_ARGS, "begin replication thread for %s:%d\n",
((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port, 0 );
1998-08-09 08:43:13 +08:00
ri->ri_process( ri );
Debug( LDAP_DEBUG_ARGS, "end replication thread for %s:%d\n",
ri->ri_hostname, ri->ri_port, 0 );
return NULL;
1998-08-09 08:43:13 +08:00
}
/*
* Start a detached thread for the given replica.
*/
int
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 */
1998-08-09 08:43:13 +08:00
pthread_attr_setdetachstate( &attr, PTHREAD_CREATE_DETACHED );
#endif
1998-08-09 08:43:13 +08:00
#if !defined(HAVE_PTHREADS_D4)
1998-08-18 08:41:35 +08:00
/* POSIX_THREADS or compatible
1998-08-18 07:26:25 +08:00
* This is a draft 10 or standard pthreads implementation
*/
1998-10-25 09:41:42 +08:00
if ( pthread_create( &(ri->ri_tid), &attr, replicate,
1998-08-18 07:26:25 +08:00
(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;
}
1998-10-25 09:41:42 +08:00
#else /* !final */
1998-08-18 07:26:25 +08:00
/*
* This is a draft 4 or earlier pthreads implementation
*/
1998-10-25 09:41:42 +08:00
if ( pthread_create( &(ri->ri_tid), attr, replicate,
1998-08-09 08:43:13 +08:00
(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;
}
1998-10-25 09:41:42 +08:00
#endif /* !final */
1998-08-09 08:43:13 +08:00
pthread_attr_destroy( &attr );
return 0;
}