mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
34 lines
599 B
C
34 lines
599 B
C
/* entry.c - ldbm backend entry_release routine */
|
|
/* $OpenLDAP$ */
|
|
/*
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#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;
|
|
}
|