mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Merge remote branch 'origin/mdb.master'
This commit is contained in:
commit
9547dd7a0d
@ -947,6 +947,10 @@ struct MDB_env {
|
||||
};
|
||||
/** max number of pages to commit in one writev() call */
|
||||
#define MDB_COMMIT_PAGES 64
|
||||
#if defined(IOV_MAX) && IOV_MAX < MDB_COMMIT_PAGES
|
||||
#undef MDB_COMMIT_PAGES
|
||||
#define MDB_COMMIT_PAGES IOV_MAX
|
||||
#endif
|
||||
|
||||
static MDB_page *mdb_page_alloc(MDB_cursor *mc, int num);
|
||||
static MDB_page *mdb_page_new(MDB_cursor *mc, uint32_t flags, int num);
|
||||
|
Loading…
Reference in New Issue
Block a user