mdbx: add MDBX_opt_rp_augment_limit.

More for https://github.com/erthink/libmdbx/issues/128

Change-Id: I94f3350b72ad11d0b586aaef1574f7654223bc40
This commit is contained in:
Leonid Yuriev
2020-11-21 17:53:17 +03:00
parent 461ba000e3
commit 4cd08f0ef9
3 changed files with 17 additions and 2 deletions

4
mdbx.h
View File

@@ -1802,6 +1802,10 @@ enum MDBX_option_t {
/** \brief The limit to grow a list of pre-allocated dirty pages. */
MDBX_opt_dp_reserve_limit,
/** \brief The limit to grow a list of reclaimed pages
* for finding a sequence of contiguous pages. */
MDBX_opt_rp_augment_limit,
};
#ifndef __cplusplus
/** \ingroup c_settings */