1999-04-13 14:15:03 +08:00
|
|
|
/* entry.c - ldbm backend entry_release routine */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1999-08-07 07:07:46 +08:00
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1999-08-07 07:07:46 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1999-04-13 14:15:03 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldbm.h"
|
|
|
|
#include "proto-back-ldbm.h"
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
ldbm_back_entry_release_rw(
|
|
|
|
Backend *be,
|
2000-09-30 12:13:30 +08:00
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
1999-04-13 14:15:03 +08:00
|
|
|
Entry *e,
|
|
|
|
int rw
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
|
|
|
|
2001-12-06 20:28:49 +08:00
|
|
|
if ( slapMode == SLAP_SERVER_MODE ) {
|
|
|
|
/* free entry and reader or writer lock */
|
|
|
|
cache_return_entry_rw( &li->li_cache, e, rw );
|
2002-01-30 03:43:17 +08:00
|
|
|
if( rw ) {
|
|
|
|
ldap_pvt_thread_rdwr_wunlock( &li->li_giant_rwlock );
|
|
|
|
} else {
|
|
|
|
ldap_pvt_thread_rdwr_runlock( &li->li_giant_rwlock );
|
|
|
|
}
|
2002-01-30 01:58:36 +08:00
|
|
|
|
2001-12-06 20:28:49 +08:00
|
|
|
} else {
|
|
|
|
entry_free( e );
|
|
|
|
}
|
1999-04-13 14:15:03 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|