openldap/servers/slapd/back-ldbm/close.c

55 lines
1.3 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* close.c - close ldbm backend */
/* $OpenLDAP$ */
2003-11-29 05:08:20 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2004-01-02 03:15:16 +08:00
* Copyright 1998-2004 The OpenLDAP Foundation.
2003-11-29 05:08:20 +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 the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
1999-08-07 07:07:46 +08:00
*/
1998-08-09 08:43:13 +08:00
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
1998-10-25 09:41:42 +08:00
#include <ac/socket.h>
1998-08-09 08:43:13 +08:00
#include "slap.h"
#include "back-ldbm.h"
int
ldbm_back_db_close( Backend *be )
1998-08-09 08:43:13 +08:00
{
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
if ( li->li_dbsyncfreq > 0 )
{
li->li_dbshutdown++;
ldap_pvt_thread_join( li->li_dbsynctid, (void *) NULL );
}
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, CRIT,
"ldbm_back_db_close: ldbm backend syncing\n", 0, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_TRACE, "ldbm backend syncing\n", 0, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
1998-08-09 08:43:13 +08:00
ldbm_cache_flush_all( be );
2001-01-18 01:01:19 +08:00
#ifdef NEW_LOGGING
LDAP_LOG( BACK_LDBM, CRIT,
"ldbm_back_db_close: ldbm backend synch'ed\n", 0, 0, 0 );
2001-01-18 01:01:19 +08:00
#else
1998-08-09 08:43:13 +08:00
Debug( LDAP_DEBUG_TRACE, "ldbm backend done syncing\n", 0, 0, 0 );
2001-01-18 01:01:19 +08:00
#endif
cache_release_all( &((struct ldbminfo *) be->be_private)->li_cache );
return 0;
1998-08-09 08:43:13 +08:00
}