]> granicus.if.org Git - apache/commitdiff
Unless I've misread this, POD is write-blocking, read nonblocking timeout 0.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 23 Oct 2007 22:05:14 +0000 (22:05 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Tue, 23 Oct 2007 22:05:14 +0000 (22:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@587673 13f79535-47bb-0310-9956-ffa450edef68

server/mpm_common.c

index 91a16cc4515d15f35d68173dd7bd0af76cc644b4..86ddc91c3c79b420644ebe858ffb4a857beb8451 100644 (file)
@@ -565,7 +565,8 @@ AP_DECLARE(apr_status_t) ap_mpm_pod_open(apr_pool_t *p, ap_pod_t **pod)
     apr_status_t rv;
 
     *pod = apr_palloc(p, sizeof(**pod));
-    rv = apr_file_pipe_create(&((*pod)->pod_in), &((*pod)->pod_out), p);
+    rv = apr_file_pipe_create_ex(&((*pod)->pod_in), &((*pod)->pod_out),
+                                 APR_WRITE_BLOCK, p);
     if (rv != APR_SUCCESS) {
         return rv;
     }