From 9a781a8c6de9513ba5f4cafef41379fae96807c1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 2 Jan 2000 23:00:27 +0000 Subject: - added tdb_flags option to tdb_open() - added TDB_CLEAR_IF_FIRST flag to clear the database if this is the first attached process. Useful for non-persistent databases like our locking area (this will also make upgrades to new database layouts easier) - use lock_path() in a couple of places - leave connections database open while smbd running - cleaned up some tdb code a little, using macros for constants (This used to be commit 00e9da3ca577527db392aced62f02c69cfee8f4f) --- source3/tdb/tdbtest.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source3/tdb/tdbtest.c') diff --git a/source3/tdb/tdbtest.c b/source3/tdb/tdbtest.c index 8089e7be7d..581d8192d9 100644 --- a/source3/tdb/tdbtest.c +++ b/source3/tdb/tdbtest.c @@ -180,11 +180,12 @@ static int traverse_fn(TDB_CONTEXT *db, TDB_DATA key, TDB_DATA dbuf) int main(int argc, char *argv[]) { int i, seed=0; - int loops = 50000; + int loops = 10000; unlink("test.gdbm"); - db = tdb_open("test.db", 0, O_RDWR | O_CREAT | O_TRUNC, 0600); + db = tdb_open("test.db", 0, TDB_CLEAR_IF_FIRST, + O_RDWR | O_CREAT | O_TRUNC, 0600); gdbm = gdbm_open("test.gdbm", 512, GDBM_WRITER|GDBM_NEWDB|GDBM_FAST, 0600, NULL); -- cgit