You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2007/09/05 22:16:37 UTC

svn commit: r573045 - /apr/apr/trunk/STATUS

Author: wrowe
Date: Wed Sep  5 13:16:37 2007
New Revision: 573045

URL: http://svn.apache.org/viewvc?rev=573045&view=rev
Log:
Another API changing feature prerequesite.

Modified:
    apr/apr/trunk/STATUS

Modified: apr/apr/trunk/STATUS
URL: http://svn.apache.org/viewvc/apr/apr/trunk/STATUS?rev=573045&r1=573044&r2=573045&view=diff
==============================================================================
--- apr/apr/trunk/STATUS [utf-8] (original)
+++ apr/apr/trunk/STATUS [utf-8] Wed Sep  5 13:16:37 2007
@@ -84,6 +84,15 @@
 
 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
 
+    * testpipe: Line 69: expected <0>, but saw <22>
+                Line 92: expected <0>, but saw <22>
+      In order to use apr_file_pipe_timeout_set on Win32 we need to
+      create that end of the pipe as nonblocking; currently win32 
+      has assumed blocking pipes on apr_file_pipe_create.  Inverting
+      this assumption would break stdhandles, the most common use case.
+      We must add a flag to set the reader/writer end to explicitly
+      blocking or nonblocking, and the choice isn't volatile.
+
     * "testlfs: Line 32: Large Files tests require Sparse file support"
       In order to portably implement LFS-Sparse files, we would have
       to actually flag that upon create (open), to be portable to win32.