diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-06-20 19:49:17 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-06-20 19:49:17 +0300 |
commit | f888a5310c1808902b4035ca3454b62bc5cf4434 (patch) | |
tree | 7425e11cdba27420d21468b0f79787834bd3c498 /src/nxt_list.h | |
parent | c7ab908c19242a5ddd0233e123e8c2be210b3c02 (diff) | |
download | unit-f888a5310c1808902b4035ca3454b62bc5cf4434.tar.gz unit-f888a5310c1808902b4035ca3454b62bc5cf4434.tar.bz2 |
Using new memory pool implementation.
Diffstat (limited to 'src/nxt_list.h')
-rw-r--r-- | src/nxt_list.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nxt_list.h b/src/nxt_list.h index 4b314360..39ad2742 100644 --- a/src/nxt_list.h +++ b/src/nxt_list.h @@ -25,7 +25,7 @@ typedef struct { uint16_t size; uint16_t nalloc; #endif - nxt_mem_pool_t *mem_pool; + nxt_mp_t *mem_pool; nxt_list_part_t part; } nxt_list_t; @@ -94,8 +94,7 @@ nxt_list_elt(nxt_list_t *list, nxt_uint_t n) } while (0) -NXT_EXPORT nxt_list_t *nxt_list_create(nxt_mem_pool_t *mp, nxt_uint_t n, - size_t size); +NXT_EXPORT nxt_list_t *nxt_list_create(nxt_mp_t *mp, nxt_uint_t n, size_t size); NXT_EXPORT void *nxt_list_add(nxt_list_t *list); NXT_EXPORT void *nxt_list_zero_add(nxt_list_t *list); |