summaryrefslogtreecommitdiffhomepage
path: root/auto/modules
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2015-03-14 17:37:07 +0300
committerValentin Bartenev <vbart@nginx.com>2015-03-14 17:37:07 +0300
commit305fc021db799c87d751f0f1f5e99afee7bb2b3b (patch)
tree8c3cf7a86f08ede19803a9f9beecb33cc0d9ebb3 /auto/modules
parent08e05a40422300a25e3b4e5b915592d7b2c41592 (diff)
downloadnginx-305fc021db799c87d751f0f1f5e99afee7bb2b3b.tar.gz
nginx-305fc021db799c87d751f0f1f5e99afee7bb2b3b.tar.bz2
Thread pools implementation.
Diffstat (limited to 'auto/modules')
-rw-r--r--auto/modules6
1 files changed, 6 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules
index 788596763..5a56957b8 100644
--- a/auto/modules
+++ b/auto/modules
@@ -432,6 +432,12 @@ fi
modules="$CORE_MODULES $EVENT_MODULES"
+# thread pool module should be initialized after events
+if [ $USE_THREADS = YES ]; then
+ modules="$modules $THREAD_POOL_MODULE"
+fi
+
+
if [ $USE_OPENSSL = YES ]; then
modules="$modules $OPENSSL_MODULE"
CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS"