diff options
author | Max Romanov <max.romanov@nginx.com> | 2020-11-05 16:10:59 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2020-11-05 16:10:59 +0300 |
commit | d321d454f9304b083d62280d0621f282a74047ee (patch) | |
tree | 6b943c825614a541a2ebde01c08c66097b0eac79 /src/nxt_application.h | |
parent | e17e73eddab015b8942d2228780bbd9afcc5e392 (diff) | |
download | unit-d321d454f9304b083d62280d0621f282a74047ee.tar.gz unit-d321d454f9304b083d62280d0621f282a74047ee.tar.bz2 |
Perl: request processing in multiple threads.
This closes #486 issue on GitHub.
Diffstat (limited to 'src/nxt_application.h')
-rw-r--r-- | src/nxt_application.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h index b8e18a23..66c0e1f7 100644 --- a/src/nxt_application.h +++ b/src/nxt_application.h @@ -64,6 +64,8 @@ typedef struct { typedef struct { char *script; + uint32_t threads; + uint32_t thread_stack_size; } nxt_perl_app_conf_t; |