From 3e1c72a08e30243c6e31968f4a13b64e12eb16fd Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Fri, 12 Aug 2011 04:59:12 -0700 Subject: [PATCH] Minor cleanup --- libraries/libmdb/mdb.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libraries/libmdb/mdb.c b/libraries/libmdb/mdb.c index 1bffce58fb..650c7add62 100644 --- a/libraries/libmdb/mdb.c +++ b/libraries/libmdb/mdb.c @@ -252,7 +252,6 @@ struct MDB_cursor { struct MDB_xcursor *mc_xcursor; }; -#define METAHASHLEN offsetof(MDB_meta, mm_hash) #define METADATA(p) ((void *)((char *)p + PAGEHDRSZ)) typedef struct MDB_node { @@ -292,8 +291,8 @@ struct MDB_txn { MDB_db *mt_dbs; unsigned int mt_numdbs; -#define MDB_TXN_RDONLY 0x01 /* read-only transaction */ -#define MDB_TXN_ERROR 0x02 /* an error has occurred */ +#define MDB_TXN_RDONLY 0x01 /* read-only transaction */ +#define MDB_TXN_ERROR 0x02 /* an error has occurred */ #define MDB_TXN_METOGGLE 0x04 /* used meta page 1 */ unsigned int mt_flags; }; @@ -341,7 +340,6 @@ struct MDB_env { #define NODEDSZ(node) ((node)->mn_dsize) #define MDB_COMMIT_PAGES 64 /* max number of pages to write in one commit */ -#define MDB_MAXCACHE_DEF 1024 /* max number of pages to keep in cache */ static int mdb_search_page_root(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, -- 2.39.5