diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-11-26 14:35:27 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-11-26 14:35:27 +0000 |
commit | f9b7db5aaa366852f0c58111ac1a1ddfdee8210e (patch) | |
tree | c2f002a0921d53bf5ddb6d1ce03ae9d670179eab /src/http/modules/perl/ngx_http_perl_module.h | |
parent | ac6e1c1254a42954409f7fa8feeaaa8a040c8bd9 (diff) | |
download | nginx-f9b7db5aaa366852f0c58111ac1a1ddfdee8210e.tar.gz nginx-f9b7db5aaa366852f0c58111ac1a1ddfdee8210e.zip |
Axe several perl interpreter instances: they may be useful in currently
unsupported threaded environment, but now they complicate code:
*) perl_clone() requires at least duplicating nginx stash;
*) the multiplicity requires to re-evalute all precompiled subroutines
and nginx stash in new interpreter context.
Diffstat (limited to 'src/http/modules/perl/ngx_http_perl_module.h')
-rw-r--r-- | src/http/modules/perl/ngx_http_perl_module.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/http/modules/perl/ngx_http_perl_module.h b/src/http/modules/perl/ngx_http_perl_module.h index 67aaba08b..af23f9ef7 100644 --- a/src/http/modules/perl/ngx_http_perl_module.h +++ b/src/http/modules/perl/ngx_http_perl_module.h @@ -20,8 +20,6 @@ typedef ngx_http_request_t *nginx; typedef struct { - PerlInterpreter *perl; - ngx_str_t filename; ngx_str_t redirect_uri; ngx_str_t redirect_args; |