diff options
author | Matt Caswell <matt@openssl.org> | 2015-09-16 18:01:58 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-11-21 00:33:46 +0100 |
commit | 0ff2b9ac0b8b9cd62e20cd65bf4922b34f57a8c1 (patch) | |
tree | 4bbf15099168a631bf984aad132b301fbfcb2a69 /apps | |
parent | Initial Async notify code changes (diff) | |
download | openssl-0ff2b9ac0b8b9cd62e20cd65bf4922b34f57a8c1.tar.xz openssl-0ff2b9ac0b8b9cd62e20cd65bf4922b34f57a8c1.zip |
Implement local thread pools
Implement the ASYNC_JOB as a local thread pool. Remove the API support
for global pools.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/s_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c index 75a3ba0a36..6b6035f0ba 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -1661,7 +1661,7 @@ int s_server_main(int argc, char *argv[]) if (async) { SSL_CTX_set_mode(ctx, SSL_MODE_ASYNC); - ASYNC_init_pool(0, 0, 0); + ASYNC_init_pool(0, 0); } #ifndef OPENSSL_NO_SRTP |