diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-08-24 17:43:32 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-08-24 17:43:32 +0300 |
commit | b84aa64dcbfb92d31cef10f2f45025a67f2418e4 (patch) | |
tree | bd7509540538801bdde233b24c0a130fbd6d757a /src/nxt_runtime.h | |
parent | 8b4b52ae3b3c9400b3d7040a591203a0c1b74ec3 (diff) | |
download | unit-b84aa64dcbfb92d31cef10f2f45025a67f2418e4.tar.gz unit-b84aa64dcbfb92d31cef10f2f45025a67f2418e4.tar.bz2 |
Removed configure option --no-threads.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_runtime.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nxt_runtime.h b/src/nxt_runtime.h index b45b1ac3..4fa0f4f6 100644 --- a/src/nxt_runtime.h +++ b/src/nxt_runtime.h @@ -31,10 +31,8 @@ struct nxt_runtime_s { nxt_file_name_t *pid_file; -#if (NXT_THREADS) nxt_array_t *thread_pools; /* of nxt_thread_pool_t */ nxt_runtime_cont_t continuation; -#endif nxt_process_t *mprocess; size_t nprocesses; @@ -80,10 +78,8 @@ void nxt_runtime_quit(nxt_task_t *task); void nxt_runtime_event_engine_free(nxt_runtime_t *rt); -#if (NXT_THREADS) nxt_int_t nxt_runtime_thread_pool_create(nxt_thread_t *thr, nxt_runtime_t *rt, nxt_uint_t max_threads, nxt_nsec_t timeout); -#endif nxt_inline nxt_bool_t |