]> git.sur5r.net Git - openldap/commitdiff
Add entry.c to complete previous change
authorHallvard Furuseth <hallvard@openldap.org>
Tue, 13 Apr 1999 06:15:03 +0000 (06:15 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Tue, 13 Apr 1999 06:15:03 +0000 (06:15 +0000)
servers/slapd/back-ldbm/entry.c [new file with mode: 0644]

diff --git a/servers/slapd/back-ldbm/entry.c b/servers/slapd/back-ldbm/entry.c
new file mode 100644 (file)
index 0000000..717cf68
--- /dev/null
@@ -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;
+}