From bce3e667dff9d6ab51f4e37bc79ef961e36bfb31 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Tue, 21 Jan 2014 14:37:55 -0700 Subject: Intermediate commit. --- db.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'db.go') diff --git a/db.go b/db.go index 480d059..d7510c2 100644 --- a/db.go +++ b/db.go @@ -46,11 +46,11 @@ type DB struct { size int /**< current file size */ pbuf []byte transaction *RWTransaction /**< current write transaction */ - maxPageNumber int /**< me_mapsize / me_psize */ - dpages []*page /**< list of malloc'd blocks for re-use */ - freePages []int /** IDL of pages that became unused in a write txn */ - dirtyPages []int /** ID2L of pages written during a write txn. Length MDB_IDL_UM_SIZE. */ - maxFreeOnePage int /** Max number of freelist items that can fit in a single overflow page */ + maxPageNumber int /**< me_mapsize / me_psize */ + dpages []*page /**< list of malloc'd blocks for re-use */ + freePages []int /** IDL of pages that became unused in a write txn */ + dirtyPages []int /** ID2L of pages written during a write txn. Length MDB_IDL_UM_SIZE. */ + maxFreeOnePage int /** Max number of freelist items that can fit in a single overflow page */ maxPageDataSize int maxNodeSize int /** Max size of a node on a page */ maxKeySize int /**< max size of a key */ -- cgit v1.2.3