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
|
|
|
/*
|
|
|
|
* Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* 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,
|
|
|
|
Entry *e,
|
|
|
|
int rw
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldbminfo *li = (struct ldbminfo *) be->be_private;
|
|
|
|
|
|
|
|
/* free entry and reader or writer lock */
|
|
|
|
cache_return_entry_rw( &li->li_cache, e, rw );
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|