From: Jean-Jacques Clar Date: Mon, 12 Jul 2004 16:53:24 +0000 (+0000) Subject: rev back to previous version, removing chnges to overload detach field , putting... X-Git-Tag: pre_ajp_proxy~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=227df09ee4eba97fdec0841068a37b125a2c0085;p=apache rev back to previous version, removing chnges to overload detach field , putting back addrspace field git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104251 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/arch/netware/mod_netware.c b/modules/arch/netware/mod_netware.c index ed8f567f88..7538dc7287 100644 --- a/modules/arch/netware/mod_netware.c +++ b/modules/arch/netware/mod_netware.c @@ -154,7 +154,7 @@ static apr_status_t ap_cgi_build_command(const char **cmd, const char ***argv, /* Run in its own address space if specified */ if(apr_table_get(d->file_handler_mode, ext)) - e_info->detached |= 2; + e_info->addrspace = 1; } /* Tokenize the full command string into its arguments */ diff --git a/modules/generators/mod_cgi.c b/modules/generators/mod_cgi.c index 3f656c8b5d..5e93272027 100644 --- a/modules/generators/mod_cgi.c +++ b/modules/generators/mod_cgi.c @@ -433,7 +433,7 @@ static apr_status_t run_cgi_child(apr_file_t **script_out, ((rc = apr_procattr_detach_set(procattr, e_info->detached)) != APR_SUCCESS) || ((rc = apr_procattr_addrspace_set(procattr, - e_info->detached)) != APR_SUCCESS) || + e_info->addrspace)) != APR_SUCCESS) || ((rc = apr_procattr_child_errfn_set(procattr, cgi_child_errfn)) != APR_SUCCESS)) { /* Something bad happened, tell the world. */ ap_log_rerror(APLOG_MARK, APLOG_ERR, rc, r, @@ -790,6 +790,7 @@ static int cgi_handler(request_rec *r) e_info.bb = NULL; e_info.ctx = NULL; e_info.next = NULL; + e_info.addrspace = 0; /* build the command line */ if ((rv = cgi_build_command(&command, &argv, r, p, &e_info)) != APR_SUCCESS) { @@ -1057,6 +1058,7 @@ static apr_status_t include_cmd(include_ctx_t *ctx, ap_filter_t *f, e_info.bb = &bb; e_info.ctx = ctx; e_info.next = f->next; + e_info.addrspace = 0; if ((rv = cgi_build_command(&command, &argv, r, r->pool, &e_info)) != APR_SUCCESS) { diff --git a/modules/generators/mod_cgi.h b/modules/generators/mod_cgi.h index c28b486bfc..96fbe09f0c 100644 --- a/modules/generators/mod_cgi.h +++ b/modules/generators/mod_cgi.h @@ -31,6 +31,7 @@ typedef struct { apr_bucket_brigade **bb; include_ctx_t *ctx; ap_filter_t *next; + apr_int32_t addrspace; } cgi_exec_info_t; /**