This still doesn't terminate CGI's after a time limit, that's the next step.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84687
13f79535-47bb-0310-9956-
ffa450edef68
*/
if (((rc = ap_createprocattr_init(&procattr, p)) != APR_SUCCESS) ||
((rc = ap_setprocattr_io(procattr,
- APR_FULL_BLOCK,
- APR_FULL_BLOCK,
- APR_FULL_BLOCK)) != APR_SUCCESS) ||
+ APR_CHILD_BLOCK,
+ APR_CHILD_BLOCK,
+ APR_CHILD_BLOCK)) != APR_SUCCESS) ||
((rc = ap_setprocattr_dir(procattr,
ap_make_dirstr_parent(r->pool, r->filename))) != APR_SUCCESS) ||
((rc = ap_setprocattr_cmdtype(procattr, APR_PROGRAM)) != APR_SUCCESS)) {