1998-08-09 08:43:13 +08:00
|
|
|
/* close.c - close ldbm backend */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-29 05:08:20 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2006-01-04 07:11:52 +08:00
|
|
|
* Copyright 1998-2006 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"
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
int
|
|
|
|
ldbm_back_db_close( Backend *be )
|
1998-08-09 08:43:13 +08:00
|
|
|
{
|
2005-09-04 23:48:44 +08:00
|
|
|
struct ldbminfo *li = be->be_private;
|
|
|
|
|
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
|
|
|
|
1998-08-09 08:43:13 +08:00
|
|
|
ldbm_cache_flush_all( be );
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldbm backend done syncing\n", 0, 0, 0 );
|
2001-01-18 01:01:19 +08:00
|
|
|
|
2005-09-04 23:48:44 +08:00
|
|
|
cache_release_all( &li->li_cache );
|
|
|
|
if ( alock_close( &li->li_alock_info )) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"ldbm_back_db_close: alock_close failed\n", 0, 0, 0 );
|
|
|
|
}
|
1999-04-06 09:55:11 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
return 0;
|
1998-08-09 08:43:13 +08:00
|
|
|
}
|