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_runtime.h | |
parent | c7ab908c19242a5ddd0233e123e8c2be210b3c02 (diff) | |
download | unit-f888a5310c1808902b4035ca3454b62bc5cf4434.tar.gz unit-f888a5310c1808902b4035ca3454b62bc5cf4434.tar.bz2 |
Using new memory pool implementation.
Diffstat (limited to 'src/nxt_runtime.h')
-rw-r--r-- | src/nxt_runtime.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_runtime.h b/src/nxt_runtime.h index c24618b7..d0ed00a1 100644 --- a/src/nxt_runtime.h +++ b/src/nxt_runtime.h @@ -13,7 +13,7 @@ typedef void (*nxt_runtime_cont_t)(nxt_task_t *task); struct nxt_runtime_s { - nxt_mem_pool_t *mem_pool; + nxt_mp_t *mem_pool; nxt_array_t *inherited_sockets; /* of nxt_listen_socket_t */ nxt_array_t *listen_sockets; /* of nxt_listen_socket_t */ @@ -112,7 +112,7 @@ nxt_port_t *nxt_runtime_port_find(nxt_runtime_t *rt, nxt_pid_t pid, /* STUB */ nxt_int_t nxt_runtime_controller_socket(nxt_task_t *task, nxt_runtime_t *rt); -nxt_str_t *nxt_current_directory(nxt_mem_pool_t *mp); +nxt_str_t *nxt_current_directory(nxt_mp_t *mp); nxt_listen_socket_t *nxt_runtime_listen_socket_add(nxt_runtime_t *rt, nxt_sockaddr_t *sa); |