diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-09-04 12:12:28 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-09-04 12:12:28 +0200 |
commit | 0b5564b86c29d00ed3b28c9112d09214ea266d23 (patch) | |
tree | 706c509977c5d6587f8089a6f2341abbb0499fb0 /include/lf.h | |
parent | 5620937c058aa9f7cd3b122b40f8b9c94fa69997 (diff) | |
download | mariadb-git-0b5564b86c29d00ed3b28c9112d09214ea266d23.tar.gz |
1. fix an old typo. A purgatory must be cleaned on every LF_PURGATORY_SIZE freeing,
not every time.
2. Increase purgatory size.
include/lf.h:
allocate larger purgatory
mysys/lf_alloc-pin.c:
typo.
Diffstat (limited to 'include/lf.h')
-rw-r--r-- | include/lf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lf.h b/include/lf.h index cdd24c07502..07769d10943 100644 --- a/include/lf.h +++ b/include/lf.h @@ -95,7 +95,7 @@ nolock_wrap(lf_dynarray_iterate, int, */ #define LF_PINBOX_PINS 4 -#define LF_PURGATORY_SIZE 10 +#define LF_PURGATORY_SIZE 100 typedef void lf_pinbox_free_func(void *, void *, void*); |