mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 15:41:24 -05:00
ITS#9017 doxygen comment for MDB_FIXEDSIZE
This commit is contained in:
parent
b77c2ba72a
commit
1f026685fd
1 changed files with 5 additions and 0 deletions
|
|
@ -4471,6 +4471,11 @@ mdb_env_map(MDB_env *env, void *addr)
|
|||
alloctype = MEM_RESERVE;
|
||||
}
|
||||
|
||||
/** Some users are afraid of seeing their disk space getting used
|
||||
* all at once, so the default is now to do incremental file growth.
|
||||
* But that has a large performance impact, so give the option of
|
||||
* allocating the file up front.
|
||||
*/
|
||||
#ifdef MDB_FIXEDSIZE
|
||||
LARGE_INTEGER fsize;
|
||||
fsize.LowPart = msize & 0xffffffff;
|
||||
|
|
|
|||
Loading…
Reference in a new issue