diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-06-19 16:26:19 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-06-19 16:26:19 +0300 |
commit | b1b9f621a44725509aa7b6eab7305542945893a3 (patch) | |
tree | c9925a19d7304f52d9d5e2cc87a5ba5cc72acd4a /test/nxt_lvlhsh_unit_test.c | |
parent | 7574c64992b98d3dfbc3dd101bd0f7d78bad0823 (diff) | |
download | unit-b1b9f621a44725509aa7b6eab7305542945893a3.tar.gz unit-b1b9f621a44725509aa7b6eab7305542945893a3.tar.bz2 |
Memory pools refactoring.
Diffstat (limited to 'test/nxt_lvlhsh_unit_test.c')
-rw-r--r-- | test/nxt_lvlhsh_unit_test.c | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/test/nxt_lvlhsh_unit_test.c b/test/nxt_lvlhsh_unit_test.c index c4dac2f0..d09a34f4 100644 --- a/test/nxt_lvlhsh_unit_test.c +++ b/test/nxt_lvlhsh_unit_test.c @@ -21,14 +21,14 @@ nxt_lvlhsh_unit_test_key_test(nxt_lvlhsh_query_t *lhq, void *data) static void * nxt_lvlhsh_unit_test_pool_alloc(void *pool, size_t size, nxt_uint_t nalloc) { - return nxt_mem_cache_align(pool, size, size); + return nxt_mp_align(pool, size, size); } static void nxt_lvlhsh_unit_test_pool_free(void *pool, void *p, size_t size) { - nxt_mem_cache_free(pool, p); + nxt_mp_free(pool, p); } @@ -132,11 +132,11 @@ nxt_int_t nxt_lvlhsh_unit_test(nxt_thread_t *thr, nxt_uint_t n, nxt_bool_t use_pool) { uintptr_t key; + nxt_mp_t *mp; nxt_nsec_t start, end; nxt_uint_t i; nxt_lvlhsh_t lh; nxt_lvlhsh_each_t lhe; - nxt_mem_cache_pool_t *pool; const nxt_lvlhsh_proto_t *proto; const size_t min_chunk_size = 32; @@ -148,9 +148,9 @@ nxt_lvlhsh_unit_test(nxt_thread_t *thr, nxt_uint_t n, nxt_bool_t use_pool) start = nxt_thread_monotonic_time(thr); if (use_pool) { - pool = nxt_mem_cache_pool_create(cluster_size, page_alignment, - page_size, min_chunk_size); - if (pool == NULL) { + mp = nxt_mp_create(cluster_size, page_alignment, page_size, + min_chunk_size); + if (mp == NULL) { return NXT_ERROR; } @@ -162,7 +162,7 @@ nxt_lvlhsh_unit_test(nxt_thread_t *thr, nxt_uint_t n, nxt_bool_t use_pool) nxt_log_error(NXT_LOG_NOTICE, thr->log, "lvlhsh unit test started: %uD malloc", n); proto = &malloc_proto; - pool = NULL; + mp = NULL; } nxt_memzero(&lh, sizeof(nxt_lvlhsh_t)); @@ -171,7 +171,7 @@ nxt_lvlhsh_unit_test(nxt_thread_t *thr, nxt_uint_t n, nxt_bool_t use_pool) for (i = 0; i < n; i++) { key = nxt_murmur_hash2(&key, sizeof(uint32_t)); - if (nxt_lvlhsh_unit_test_add(&lh, proto, pool, key) != NXT_OK) { + if (nxt_lvlhsh_unit_test_add(&lh, proto, mp, key) != NXT_OK) { nxt_log_error(NXT_LOG_NOTICE, thr->log, "lvlhsh add unit test failed at %ui", i); return NXT_ERROR; @@ -206,19 +206,18 @@ nxt_lvlhsh_unit_test(nxt_thread_t *thr, nxt_uint_t n, nxt_bool_t use_pool) for (i = 0; i < n; i++) { key = nxt_murmur_hash2(&key, sizeof(uint32_t)); - if (nxt_lvlhsh_unit_test_delete(&lh, proto, pool, key) != NXT_OK) { + if (nxt_lvlhsh_unit_test_delete(&lh, proto, mp, key) != NXT_OK) { return NXT_ERROR; } } - if (pool != NULL) { - if (!nxt_mem_cache_pool_is_empty(pool)) { - nxt_log_error(NXT_LOG_NOTICE, thr->log, - "mem cache pool is not empty"); + if (mp != NULL) { + if (!nxt_mp_is_empty(mp)) { + nxt_log_error(NXT_LOG_NOTICE, thr->log, "mem pool is not empty"); return NXT_ERROR; } - nxt_mem_cache_pool_destroy(pool); + nxt_mp_destroy(mp); } nxt_thread_time_update(thr); |