Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
HAMANO Tsukasa
OpenLDAP
Commits
8670805b
Commit
8670805b
authored
Aug 02, 2016
by
Hallvard Furuseth
Browse files
Doc fixes: VALID_FLAGS, mm_last_pg, mt_loose_count
parent
58b0ce50
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblmdb/mdb.c
View file @
8670805b
...
...
@@ -1074,9 +1074,9 @@ typedef struct MDB_db {
pgno_t
md_root
;
/**< the root page of this tree */
}
MDB_db
;
/** mdb_dbi_open flags */
#define MDB_VALID 0x8000
/**< DB handle is valid, for me_dbflags */
#define PERSISTENT_FLAGS (0xffff & ~(MDB_VALID))
/** #mdb_dbi_open() flags */
#define VALID_FLAGS (MDB_REVERSEKEY|MDB_DUPSORT|MDB_INTEGERKEY|MDB_DUPFIXED|\
MDB_INTEGERDUP|MDB_REVERSEDUP|MDB_CREATE)
...
...
@@ -1115,7 +1115,10 @@ typedef struct MDB_meta {
#define mm_psize mm_dbs[FREE_DBI].md_pad
/** Any persistent environment flags. @ref mdb_env */
#define mm_flags mm_dbs[FREE_DBI].md_flags
pgno_t
mm_last_pg
;
/**< last used page in file */
/** Last used page in the datafile.
* Actually the file may be shorter if the freeDB lists the final pages.
*/
pgno_t
mm_last_pg
;
volatile
txnid_t
mm_txnid
;
/**< txnid that committed this page */
}
MDB_meta
;
...
...
@@ -1168,7 +1171,7 @@ struct MDB_txn {
* in this transaction, linked through #NEXT_LOOSE_PAGE(page).
*/
MDB_page
*
mt_loose_pgs
;
/*
#
Number of loose pages (#mt_loose_pgs) */
/*
*
Number of loose pages (#mt_loose_pgs) */
int
mt_loose_count
;
/** The sorted list of dirty pages we temporarily wrote to disk
* because the dirty list was full. page numbers in here are
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment