mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
Add entry.c to complete previous change
This commit is contained in:
parent
62aa401bd7
commit
169d6d0200
28
servers/slapd/back-ldbm/entry.c
Normal file
28
servers/slapd/back-ldbm/entry.c
Normal file
@ -0,0 +1,28 @@
|
||||
/* entry.c - ldbm backend entry_release routine */
|
||||
|
||||
#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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user