openldap/servers/slurpd/replica.c

84 lines
2.1 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
2003-11-27 02:19:00 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2005-01-02 04:49:32 +08:00
* Copyright 1998-2005 The OpenLDAP Foundation.
2003-11-27 02:19:00 +08:00
* 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
* <http://www.OpenLDAP.org/license.html>.
2001-01-21 01:49:05 +08:00
*/
2003-11-27 02:19:00 +08:00
/* Portions Copyright (c) 1996 Regents of the University of Michigan.
1998-08-09 08:43:13 +08:00
* 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.
*/
2003-11-27 02:19:00 +08:00
/* ACKNOWLEDGEMENTS:
* This work was originally developed by the University of Michigan
* (as part of U-MICH LDAP).
*/
1998-08-09 08:43:13 +08:00
/*
* 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 <ac/stdlib.h>
1998-08-09 08:43:13 +08:00
#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
)
{
/* POSIX_THREADS or compatible */
1999-03-04 01:35:33 +08:00
if ( ldap_pvt_thread_create( &(ri->ri_tid), 0, replicate,
1998-08-09 08:43:13 +08:00
(void *) ri ) != 0 ) {
Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" ldap_pvt_thread_create failed\n",
1998-08-09 08:43:13 +08:00
ri->ri_hostname, ri->ri_port, 0 );
return -1;
}
1998-10-25 09:41:42 +08:00
1998-08-09 08:43:13 +08:00
return 0;
}