diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-10-18 21:41:59 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:26 -0500 |
commit | cba142f1ae71b03266210e254c251683846d7fd7 (patch) | |
tree | a08bfecb74e2954700df90beca5ee9bb73117a87 /source4/lib/tdb/include/tdb.h | |
parent | 403f0c92a734a9bf7709a0af0a0aa9cc89bf3144 (diff) | |
download | samba-cba142f1ae71b03266210e254c251683846d7fd7.tar.gz samba-cba142f1ae71b03266210e254c251683846d7fd7.tar.bz2 samba-cba142f1ae71b03266210e254c251683846d7fd7.zip |
r19401: make tdb_lockall() much more efficient, and add a tdb_lockall_read()
call which does a read lock on all chains. These will be used to make
ldb searches more efficient
(This used to be commit de664ec1f8cf179f1d650563272c0de3f7636e2b)
Diffstat (limited to 'source4/lib/tdb/include/tdb.h')
-rw-r--r-- | source4/lib/tdb/include/tdb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/tdb/include/tdb.h b/source4/lib/tdb/include/tdb.h index 296a946c42..af3792cbfe 100644 --- a/source4/lib/tdb/include/tdb.h +++ b/source4/lib/tdb/include/tdb.h @@ -111,7 +111,9 @@ int tdb_traverse(struct tdb_context *tdb, tdb_traverse_func fn, void *); int tdb_traverse_read(struct tdb_context *tdb, tdb_traverse_func fn, void *); int tdb_exists(struct tdb_context *tdb, TDB_DATA key); int tdb_lockall(struct tdb_context *tdb); -void tdb_unlockall(struct tdb_context *tdb); +int tdb_unlockall(struct tdb_context *tdb); +int tdb_lockall_read(struct tdb_context *tdb); +int tdb_unlockall_read(struct tdb_context *tdb); const char *tdb_name(struct tdb_context *tdb); int tdb_fd(struct tdb_context *tdb); tdb_log_func tdb_log_fn(struct tdb_context *tdb); |