diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-03-09 18:03:27 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-03-09 18:03:27 +0300 |
commit | 6f2c9acd1841ca20a1388b34aef64e9f00459090 (patch) | |
tree | c0b9c1063ec464027d1ca29a793f6c0b7a6878d5 /src/nxt_mem_pool.h | |
parent | 5745e4826427155e29c1d520fe77811a0f570689 (diff) | |
download | unit-6f2c9acd1841ca20a1388b34aef64e9f00459090.tar.gz unit-6f2c9acd1841ca20a1388b34aef64e9f00459090.tar.bz2 |
Processes refactoring.
The cycle has been renamed to the runtime.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_mem_pool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_mem_pool.h b/src/nxt_mem_pool.h index f59e29e1..a896956c 100644 --- a/src/nxt_mem_pool.h +++ b/src/nxt_mem_pool.h @@ -11,7 +11,7 @@ #define NXT_MEM_POOL_MIN_EXT_SIZE nxt_pagesize -typedef void (*nxt_mem_pool_cleanup_handler_t)(void *data); +typedef void (*nxt_mem_pool_cleanup_handler_t)(nxt_task_t *task, void *data); typedef struct nxt_mem_pool_cleanup_s nxt_mem_pool_cleanup_t; typedef struct nxt_mem_pool_cache_s nxt_mem_pool_cache_t; typedef struct nxt_mem_pool_chunk_s nxt_mem_pool_chunk_t; |